예제 #1
0
파일: CapReqBuilder.java 프로젝트: kwin/bnd
 public CapReqBuilder from(Requirement r) throws Exception {
   addAttributes(r.getAttributes());
   addDirectives(r.getDirectives());
   return this;
 }
예제 #2
0
파일: CapReqBuilder.java 프로젝트: kwin/bnd
 public CapReqBuilder from(Capability c) throws Exception {
   addAttributes(c.getAttributes());
   addDirectives(c.getDirectives());
   return this;
 }