slcom/slangc/codegraph/DynamicTagDefinition.sauce

14 lines
286 B
Plaintext
Raw Permalink Normal View History

package slangc.codegraph;
public class DynamicTagDefinition extends DynamicInterfaceDefinition implements AbstractTagDefinition {
public DynamicTagDefinition() {
// TODO Auto-generated constructor stub
}
public TypeType getTypeType() {
return TypeType.TAG;
}
}