Examples of addReference()


Examples of asia.redact.bracket.properties.mgmt.LoadList.addReference()

   
    public synchronized static Properties loadReferences(List<PropertiesReference> refs, Attributes attribs){
     
      LoadList list = new LoadList(attribs);
      for(PropertiesReference ref: refs){
        list.addReference(ref);
      }
     
      list.load();
     
      return list.getProps();
View Full Code Here

Examples of ch.semafor.gendas.model.ElementType.addReference()

                      logger.debug("adding list property {}", name );
                      elementType.add(propType);
                    }
                    logger.debug("adding reference {} for {}",
                        argType.getCanonicalName(), name);
                    elementType.addReference(create(argType));
                  }
                }
              }
            }
          }); // ToDo, unnest, PMD:AvoidDeeplyNestedIfStmts
View Full Code Here

Examples of com.sun.star.uno.XAdapter.addReference()

       
        SomeClass comp= new SomeClass();
        XAdapter adapter= comp.queryAdapter();
        MyRef aRef1= new MyRef();
        MyRef aRef2= new MyRef();
        adapter.addReference(aRef1);
        adapter.addReference(aRef2);
       
        r[i++]= adapter.queryAdapted() == comp;
        comp= null;
        System.out.println("Wait 5 sec");
View Full Code Here

Examples of com.sun.star.uno.XAdapter.addReference()

        SomeClass comp= new SomeClass();
        XAdapter adapter= comp.queryAdapter();
        MyRef aRef1= new MyRef();
        MyRef aRef2= new MyRef();
        adapter.addReference(aRef1);
        adapter.addReference(aRef2);
       
        r[i++]= adapter.queryAdapted() == comp;
        comp= null;
        System.out.println("Wait 5 sec");
        for(int c= 0; c < 50; c++)
View Full Code Here

Examples of com.sun.star.uno.XAdapter.addReference()

        comp= new SomeClass();
        adapter= comp.queryAdapter();
        aRef1.nDisposeCalled= 0;
        aRef2.nDisposeCalled= 0;
       
        adapter.addReference(aRef1);
        adapter.addReference(aRef2);
       
        adapter.removeReference(aRef1);
        System.out.println("Wait 5 sec");
        comp= null;
View Full Code Here

Examples of com.sun.star.uno.XAdapter.addReference()

        adapter= comp.queryAdapter();
        aRef1.nDisposeCalled= 0;
        aRef2.nDisposeCalled= 0;
       
        adapter.addReference(aRef1);
        adapter.addReference(aRef2);
       
        adapter.removeReference(aRef1);
        System.out.println("Wait 5 sec");
        comp= null;
        for(int c= 0; c < 50; c++)
View Full Code Here

Examples of com.sun.xml.wss.core.ReferenceListHeaderBlock.addReference()

                _ekReferenceList.addReference(xencEncryptedDataRef);
            }else {
                if (_standaloneReferenceList == null){
                    _standaloneReferenceList = new ReferenceListHeaderBlock(secureMsg.getSOAPPart());
                }
                _standaloneReferenceList.addReference(xencEncryptedDataRef);
               
                KeyInfoHeaderBlock keyInfoBlock = new KeyInfoHeaderBlock(secureMsg.getSOAPPart());
                SecurityTokenReference cloned = null;
                if (dktSctTokenRef != null) {
                    cloned = new SecurityTokenReference((SOAPElement)dktSctTokenRef.cloneNode(true));
View Full Code Here

Examples of nl.siegmann.epublib.domain.Guide.addReference()

      String title = DOMUtil.getAttribute(referenceElement, NAMESPACE_OPF, OPFAttributes.title);
      if (GuideReference.COVER.equalsIgnoreCase(type)) {
        continue; // cover is handled elsewhere
      }
      GuideReference reference = new GuideReference(resource, type, title, StringUtil.substringAfter(resourceHref, Constants.FRAGMENT_SEPARATOR_CHAR));
      guide.addReference(reference);
    }
  }


  /**
 
View Full Code Here

Examples of org.apache.commons.jelly.tags.ant.GrantProject.addReference()

        context.setAntProject( antProject );
        AntTagLibrary.setProject( context, antProject );

        Path p = new Path( antProject );
        p.setPath( project.getDependencyClasspath() );
        antProject.addReference( MavenConstants.DEPENDENCY_CLASSPATH, p );

        return antProject;
    }
}
View Full Code Here

Examples of org.apache.ddlutils.model.ForeignKey.addReference()

        ref.setLocalColumnName((String)values.get("FKCOLUMN_NAME"));
        if (values.containsKey("KEY_SEQ"))
        {
            ref.setSequenceValue(((Short)values.get("KEY_SEQ")).intValue());
        }
        fk.addReference(ref);
    }

    /**
     * Determines the indices for the indicated table.
     *
 
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.