net.sf.nakeduml.textmetamodel.TextFileNode Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of metamodel Show documentation
Show all versions of metamodel Show documentation
A uml code generator and execution engine
The newest version!
package net.sf.nakeduml.textmetamodel;
public abstract class TextFileNode{
protected TextFileNode parent;
protected String name;
protected TextFileNode(TextFileNode parent,String name){
this(name);
this.parent = parent;
}
protected TextFileNode(String name){
super();
this.name = name;
}
public TextFileNode getParent(){
return this.parent;
}
public String getName(){
return name;
}
public abstract boolean hasContent();
}