Examples of position()


Examples of com.pointcliki.ui.ProgressBar.position()

        fDownNo = null;
        fDownInfo.cleanup();
        fDownInfo = null;
       
        final ProgressBar downloadBar = new ProgressBar(new Vector2f(340, 32), new Color(20, 44, 48), HOVER);
        StartScene.this.addChild(downloadBar.position(new Vector2f(60, 115)));
       
        final TextEntity downloadText = new TextEntity("Please wait while Dizgruntled downloads\nrequired resources", TextEntity.ALIGN_LEFT, fFont);
        StartScene.this.addChild(downloadText.position(new Vector2f(60, 200)));
       
        // Download the resources
View Full Code Here

Examples of com.pointcliki.ui.TextBox.position()

        i += 26;
       
        String[] choices = s.choices();
        if (choices == null) {
          TextBox box = new TextBox(s.value().equals("") ? s.name() : s.value(), s.name());
          box.position(new Vector2f(0, i)).resize(new Vector2f(155, 24));
          box.setChangedMinion(new Minion<IEvent>() {
            @Override
            public long run(Dispatcher<IEvent> dispatcher, String type, IEvent event) {
              s.value(type);
              editLogic(l);
View Full Code Here

Examples of com.slytechs.utils.memory.BitBuffer.position()

   *
   * @see org.jnetstream.packet.Packet#getBuffer()
   */
  public BitBuffer getBuffer() throws IOException {
    final BitBuffer buffer = getRecordBitBuffer();
    buffer.position(buffer.position() + PcapPacketRecord.HEADER_LENGTH * 8);

    return buffer;
  }

  /*
 
View Full Code Here

Examples of com.starlight.io.PositionTrackingInputStream.position()

            // NOTE: increment line right away since we're now at the end
            //       of the preceding line.
            line++;

            if ( line % row_skip_mod == 0 ) {
              row_index_map.put( line, in.position() );
//              printRowIndexMap( "after add" );
             
              if ( row_index_map.size() > max_index_size ) {
                row_skip_mod = increaseRowSkipMod( row_skip_mod, line );
                printRowIndexMap( "after grow" );
View Full Code Here

Examples of com.sun.j3d.internal.ByteBufferWrapper.position()

/*     */
/* 437 */               break;
/*     */             case 2:
/* 440 */               ByteBufferWrapper bb = new ByteBufferWrapper(buf);
/* 441 */               byte[] c = new byte[valid * 4];
/* 442 */               bb.position(initial * 4);
/* 443 */               bb.get(c, 0, valid * 4);
/* 444 */               colors = new Color4f[valid];
/* 445 */               for (i = 0; i < valid; i++) {
/* 446 */                 colors[i] = new Color4f((c[(i * 4 + 0)] & 0xFF) / 255.0F, (c[(i * 4 + 1)] & 0xFF) / 255.0F, (c[(i * 4 + 2)] & 0xFF) / 255.0F, (c[(i * 4 + 3)] & 0xFF) / 255.0F);
/*     */               }
View Full Code Here

Examples of com.sun.j3d.internal.DoubleBufferWrapper.position()

/*     */
/* 294 */             break;
/*     */           case 4:
/* 297 */             DoubleBufferWrapper bb = new DoubleBufferWrapper(buf);
/* 298 */             double[] c = new double[valid * 3];
/* 299 */             bb.position(initial * 3);
/* 300 */             bb.get(c, 0, valid * 3);
/* 301 */             coords = new Point3f[valid];
/* 302 */             for (i = 0; i < valid; i++) {
/* 303 */               coords[i] = new Point3f((float)c[(i * 3 + 0)], (float)c[(i * 3 + 1)], (float)c[(i * 3 + 2)]);
/*     */             }
View Full Code Here

Examples of com.sun.j3d.internal.FloatBufferWrapper.position()

/*     */       float[] d;
/* 169 */       if ((vertexFormat & 0x800) != 0) {
/* 170 */         J3DBuffer b = geomArray.getInterleavedVertexBuffer();
/* 171 */         FloatBufferWrapper w = new FloatBufferWrapper(b);
/* 172 */         float[] d = new float[w.limit()];
/* 173 */         w.position(0);
/* 174 */         w.get(d); } else {
/* 175 */         d = geomArray.getInterleavedVertices();
/*     */       }
/* 177 */       int offset = 0;
/* 178 */       if ((vertexFormat & 0x20) != 0) {
View Full Code Here

Examples of com.sun.javadoc.ClassDoc.position()

    for (int i = 0; i < cda.length; i++) {
      ClassDoc cd = cda[i];

      // Make sure we have source.
      //
      SourcePosition p = cd.position();
      if (p == null || p.line() == 0) {
        // Skip this since it isn't ours (otherwise we would have source).
        //
        continue;
      }
View Full Code Here

Examples of com.sun.javadoc.MethodDoc.position()

              resolvedParamTypes[j])) {
            // param type mismatch
            continue outer;
          }
        }
        return methodDoc.position();
      }
    }

    System.err.println(tag.position().toString()
        + ": unable to resolve method for " + tag);
View Full Code Here

Examples of com.sun.javadoc.Tag.position()

        }
        final StringBuilder buffer = new StringBuilder(128);
        buffer.append("\n<p><font size=\"-1\">");
        for (int i=0; i<tags.length; i++) {
            final Tag tag = tags[i];
            File file = tag.position().file();
            module = file.getName();
            while (file != null) {
                file = file.getParentFile();
                if (file.getName().equals("src")) {
                    file = file.getParentFile();
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.