1 26 27 package org.objectweb.openccm.generator.java.ast.api; 28 29 import java.util.ArrayList ; 30 31 36 37 public interface MethodObject 38 extends ObjectBase, 39 AbstractObject, 40 StaticObject 41 { 42 47 public void 48 setReturnType(String type); 49 50 55 public AttributeObject 56 getReturnType(); 57 58 63 public void 64 addParameter(AttributeObject param); 65 66 71 public ArrayList  72 getParameters(); 73 74 79 public void 80 addException(String ex); 81 82 87 public ArrayList  88 getExceptions(); 89 90 95 public MethodContent 96 getImpl(); 97 } 98 | Popular Tags |