Examples of create()


Examples of lineage2.gameserver.model.CursedWeapon.create()

      if (cursedWeapons.length > 0)
      {
        CursedWeapon cw = cursedWeapons[Rnd.get(cursedWeapons.length)];
        if (Rnd.get(100000000) <= cw.getDropRate())
        {
          cw.create(attackable, killer);
        }
      }
    }
  }
 

Examples of link.checker.persist.api.ResourceDao.create()

        List<Resource> resources = javaJingScraper.checkEpisodePageLinks();

        for(Resource resource : resources) {

            resourceDao.create(resource);

        }
    }
}

Examples of liquibase.change.ChangeFactory.create()

                }

                TestState state = new TestState(name.getMethodName(), changeName, database.getShortName(), TestState.Type.SQL);
                state.addComment("Database: " + database.getShortName());

                Change change = changeFactory.create(changeName);
                if (!change.supports(database)) {
                    continue;
                }
                if (change.generateStatementsVolatile(database)) {
                    continue;

Examples of main.pattern.DBControllerCreator.create()

    /**
     * @param args the command line arguments
     */
    public static void main(String[] args) throws IOException {
        DBControllerCreator creator = new MySQLControllerCreator();
        DBController connection = creator.create();
        connection.openConnect();
        connection.executeQuery("Some query.");
        connection.closeConnect();
        DBControllerCreator creator2 = new OracleControllerCreator();
        DBController connection2 = creator2.create();

Examples of main.pattern.mysql.MySQLControllerCreator.create()

    /**
     * @param args the command line arguments
     */
    public static void main(String[] args) throws IOException {
        DBControllerCreator creator = new MySQLControllerCreator();
        DBController connection = creator.create();
        connection.openConnect();
        connection.executeQuery("Some query.");
        connection.closeConnect();
        DBControllerCreator creator2 = new OracleControllerCreator();
        DBController connection2 = creator2.create();

Examples of main.pattern.oracle.OracleControllerCreator.create()

        DBController connection = creator.create();
        connection.openConnect();
        connection.executeQuery("Some query.");
        connection.closeConnect();
        DBControllerCreator creator2 = new OracleControllerCreator();
        DBController connection2 = creator2.create();
        connection2.openConnect();
        connection2.executeQuery("Some query.");
        connection2.closeConnect();
    }
}

Examples of me.kikoqiu.opencl.image.IImage2d.create()

      if( hh*divider<h){
        ++hh;
      }
      w=ww;h=hh;
      IImage2d img=new ImageRGBA_SNORM_INT16();
      img.create(w, h, true);
      outputs.add(img);
    }
  }
 
  public void filter(IImage2d input, Main main){

Examples of me.kikoqiu.opencl.image.ImageLumi.create()

      if(ww*divider!=w || hh*divider!=h){
        break;
      }
      w=ww;h=hh;
      IImage2d img=new ImageLumi();
      img.create(w, h, true);
      outputs.add(img);
    }
  }
 
  public void filter(IImage2d input){

Examples of me.kikoqiu.opencl.image.ImageRGBA.create()

    if(bi==null)return ret;   
    Profile.begin();
   
    //create current frame image and scale it
    IImage2d inputNow=new ImageRGBA();   
    inputNow.create(bi);   
    sfNow.init(inputNow.getWidth(), inputNow.getHeight(), 16, 2);
    sfNow.filter(inputNow);
       
    Profile.out();
    if(inputPrev!=null){

Examples of me.kikoqiu.opencl.image.ImageRGBA_SNORM_INT16.create()

      if( hh*divider<h){
        ++hh;
      }
      w=ww;h=hh;
      IImage2d img=new ImageRGBA_SNORM_INT16();
      img.create(w, h, true);
      outputs.add(img);
    }
  }
 
  public void filter(IImage2d input, Main main){
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.