1 19 20 package org.netbeans.modules.xml.schema.model.impl; 21 22 import org.netbeans.modules.xml.schema.model.SchemaComponent; 23 import org.netbeans.modules.xml.xam.Nameable; 24 import org.w3c.dom.Element ; 25 26 30 public abstract class NamedImpl extends SchemaComponentImpl implements Nameable<SchemaComponent> { 31 32 public NamedImpl(SchemaModelImpl model, Element e) { 33 super(model,e); 34 } 35 36 public void setName(String name) { 37 setAttribute(this.NAME_PROPERTY, SchemaAttributes.NAME, name); 38 } 39 40 public String getName() { 41 return getAttribute(SchemaAttributes.NAME); 42 } 43 } 44 | Popular Tags |