JavaPatternMatching/src/de/dhbwstuttgart/syntaxtree/ExceptionList.java

36 lines
709 B
Java
Raw Normal View History

2013-10-18 11:33:46 +00:00
// ino.module.ExceptionList.8559.package
2014-09-02 08:33:54 +00:00
package de.dhbwstuttgart.syntaxtree;
2013-10-18 11:33:46 +00:00
// ino.end
// ino.module.ExceptionList.8559.import
import java.util.Vector;
2014-09-02 08:33:54 +00:00
import de.dhbwstuttgart.syntaxtree.type.RefType;
2013-10-18 11:33:46 +00:00
// 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