Examples of resolve()


Examples of com.dci.intellij.dbn.language.common.psi.IdentifierPsiElement.resolve()

                        Set<BasePsiElement> objectDefinitions = lookupAdapter.collectInParentScopeOf(element);
                        if (objectDefinitions != null) {
                            for (BasePsiElement psiElement : objectDefinitions) {
                                if (psiElement instanceof IdentifierPsiElement) {
                                    IdentifierPsiElement identifierPsiElement = (IdentifierPsiElement) psiElement;
                                    PsiElement referencedPsiElement = identifierPsiElement.resolve();
                                    if (referencedPsiElement instanceof DBObject) {
                                        DBObject object = (DBObject) referencedPsiElement;
                                        LookupItemFactory lookupItemFactory = object.getLookupItemFactory(identifierElementType.getLanguage());
                                        lookupItemFactory.createLookupItem(object, consumer);
                                    }
View Full Code Here

Examples of com.dci.intellij.dbn.language.common.psi.LeafPsiElement.resolve()

                    if (leafs.length == index) {
                        // variant is too short for given QualifiedIdentifier
                        return false;
                    }

                    PsiElement reference = leafPsiElement.resolve();
                    LeafElementType leafElementType = (LeafElementType) leafPsiElement.getElementType();
                    if (reference == null) {
                        if (!(leafElementType.isIdentifier() && leafs[index].isIdentifier()) ||
                                !leafElementType.isSameAs(leafs[index])) {
                            if(child != children[children.length-1]) {
View Full Code Here

Examples of com.digitolio.jdbi.table.TableResolver.resolve()

//        File targetDir = new File("D:\\PersonalProjects\\digitolio\\jdbi-codegen\\src\\main\\java\\cemo");
        File targetDir = new File(args[1]);
        StringBuilder allDdl = new StringBuilder();

        for (Class<?> aClass : classes) {
            Table resolve = tableResolver.resolve(aClass, strategy);
            H2Generator h2Generator = new H2Generator(resolve, aClass, targetDir);
            Object generate = h2Generator.generate();
            String content = generate.toString();
            allDdl.append(content).append("\n\n");
            File file = new File(args[1].concat("/db/h2/").concat(resolve.getTableName().toLowerCase().concat(".ddl")));
View Full Code Here

Examples of com.dyuproject.ioc.Resource.Resolver.resolve()

            path = path.substring(idx+1).trim();
            if(path.length()==0)
                throw new IOException("invalid resource: " + path);
           
            resource.setPath(path);
            resolver.resolve(resource, context);
        }
    }

    public Resource createResource(String path) throws IOException
    {
View Full Code Here

Examples of com.esri.gpt.catalog.schema.indexable.IndexableContext.resolve()

   
    if (this.getIndexables() != null) {
      IndexableContext ictx = new IndexableContext(this.getPropertyMeanings());
      this.getIndexables().setIndexableContext(ictx);
      this.getIndexables().evaluate(this,ictx,dom,xpath);
      ictx.resolve(this,dom,_evaluatedEsriTags);
    }
   
    /*
    try {
      com.esri.gpt.catalog.classification.ClsConfig ccfg = new com.esri.gpt.catalog.classification.ClsConfig();
View Full Code Here

Examples of com.eviware.soapui.support.resolver.ResolveContext.PathToResolve.resolve()

          Object key = jbc.getSelectedItem();
          if( key instanceof Resolver )
          {
            path.setResolver( key );
          }
          if( path.resolve() )
          {
            path.setSolved( true );
            jbc.addItem( "Resolved" );
            jbc.setSelectedIndex( jbc.getItemCount() - 1 );
View Full Code Here

Examples of com.eviware.soapui.support.resolver.ResolveDialog.resolve()

  private void resolveImportedTestSuite( WsdlTestSuite testSuite )
  {
    ResolveDialog resolver = new ResolveDialog( "Validate TestSuite", "Checks TestSuite for inconsistencies", null );
    resolver.setShowOkMessage( false );
    resolver.resolve( testSuite );
  }

  /**
   * @see com.eviware.soapui.impl.WsdlInterfaceFactory.importWsdl
   * @deprecated
 
View Full Code Here

Examples of com.facebook.presto.jdbc.internal.jackson.databind.deser.impl.ReadableObjectId.resolve()

        throws IOException, JsonProcessingException
    {
        Object id = _objectIdReader.readObjectReference(jp, ctxt);
        ReadableObjectId roid = ctxt.findObjectId(id, _objectIdReader.generator, _objectIdReader.resolver);
        // do we have it resolved?
        Object pojo = roid.resolve();
        if (pojo == null) { // not yet; should wait...
            throw new IllegalStateException("Could not resolve Object Id ["+id+"] -- unresolved forward-reference?");
        }
        return pojo;
    }
View Full Code Here

Examples of com.fasterxml.classmate.MemberResolver.resolve()

  @Override
  public ResolvedTypeWithMembers resolveMemberTypes(ResolvedType type) {
    // todo : is there a reason we create this resolver every time?
    MemberResolver memberResolver = new MemberResolver( typeResolver );
    return memberResolver.resolve( type, null, null );
  }

  @Override
  public ServiceRegistry getServiceRegistry() {
    return getMetadataImplementor().getServiceRegistry();
View Full Code Here

Examples of com.fasterxml.classmate.TypeResolver.resolve()

   * @param with  the class which substitutes 'clazz'
   * @return this SwaggerSpringMvcPlugin
   */
  public SwaggerSpringMvcPlugin directModelSubstitute(Class clazz, Class with) {
    TypeResolver typeResolver = swaggerGlobalSettings.getTypeResolver();
    this.alternateTypeRules.add(newRule(typeResolver.resolve(clazz), typeResolver.resolve(with)));
    return this;
  }

  /**
   * Substitutes each generic class with it's direct parameterized type.
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.