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