public static Material mkMaterial( final String name, final Description description, final String type) { final Material material = VCML.createMaterial(); material.setName(name); material.setDescription(description); material.setType(type); return material; }
@Override public void run( Material material, Resource resource, IProgressMonitor monitor, Map<String, VCObject> seenObjects, List<Option> options) throws JCoException { read(material.getName(), resource, monitor, seenObjects, options, false); }