forked from JavaTX/JavaCompilerCore
36 lines
709 B
Java
Executable File
36 lines
709 B
Java
Executable File
// ino.module.ExceptionList.8559.package
|
|
package de.dhbwstuttgart.syntaxtree;
|
|
// ino.end
|
|
// ino.module.ExceptionList.8559.import
|
|
import java.util.Vector;
|
|
|
|
import de.dhbwstuttgart.syntaxtree.type.RefType;
|
|
|
|
|
|
|
|
|
|
// ino.class.ExceptionList.23358.declaration
|
|
public class ExceptionList
|
|
// ino.end
|
|
// ino.class.ExceptionList.23358.body
|
|
{
|
|
// ino.attribute.reftype.23361.declaration
|
|
private Vector<RefType> reftype = new Vector<RefType>();
|
|
// ino.end
|
|
|
|
|
|
|
|
// ino.method.set_addElem.23364.definition
|
|
public void set_addElem(RefType rety)
|
|
// ino.end
|
|
// ino.method.set_addElem.23364.body
|
|
{
|
|
reftype.addElement(rety);
|
|
}
|
|
// ino.end
|
|
|
|
|
|
|
|
}
|
|
// ino.end
|