1 18 19 package org.objectweb.jac.ide; 20 21 public class PointcutLink extends RelationLink { 22 23 public PointcutLink() { 24 super(); 25 } 26 27 public PointcutLink(Class start, Class end) { 28 super(start,end); 29 } 30 31 String methodPCD; 32 33 37 public String getMethodPCD() { 38 return methodPCD; 39 } 40 41 45 public void setMethodPCD(String v) { 46 this.methodPCD = v; 47 } 48 49 String hostPCD; 50 51 55 public String getHostPCD() { 56 return hostPCD; 57 } 58 59 63 public void setHostPCD(String v) { 64 this.hostPCD = v; 65 } 66 67 91 92 String aspectRole; 93 94 98 public String getAspectRole() { 99 return aspectRole; 100 } 101 102 106 public void setAspectRole(String v) { 107 this.aspectRole = v; 108 } 109 110 } 111 | Popular Tags |