Examples of fill()


Examples of org.geoforge.plgbackuprestore4gfr.swing.tablemodel.GfrAtmBckRstSpcAbs.fill()

   }

   private void _fill_() throws Exception
   {
      GfrAtmBckRstSpcAbs mdlTable = (GfrAtmBckRstSpcAbs) this.getModel();
      mdlTable.fill(this._objssData);
   }

   @Override
   public boolean init()
   {
View Full Code Here

Examples of org.geotools.styling.StyleFactory.fill()

            // The default if neither an ExternalGraphic nor a Mark is specified is to use the default
            // mark of a "square" with a 50%-gray fill and a black outline, with a size of 6 pixels,
            // unless an explicit Size is specified
            StyleFactory sf = CommonFactoryFinder.getStyleFactory();
            Mark defaultMark = sf.mark(ff.literal("square"),
                    sf.fill(null, ff.literal("#808080"), null),
                    sf.createStroke(ff.literal("#000000"), ff.literal(1))
            );
            if (size <= 0) {
                size = 6;
            }
View Full Code Here

Examples of org.grouplens.lenskit.vectors.MutableSparseVector.fill()

                           NeighborhoodScorer scorer) {
        Predicate<ScoredId> usable = new VectorKeyPredicate(userData);

        // Create a channel for recording the neighborhoodsize
        MutableSparseVector sizeChannel = scores.getOrAddChannelVector(ItemItemScorer.NEIGHBORHOOD_SIZE_SYMBOL);
        sizeChannel.fill(0);
        // for each item, compute its prediction
        for (VectorEntry e : scores.view(VectorEntry.State.EITHER)) {
            final long item = e.getKey();

            // find all potential neighbors
View Full Code Here

Examples of org.hornetq.core.asyncio.impl.AsynchronousFileImpl.fill()

         final int NUMBER_LINES = 1000;
         final int SIZE = 512;

         controller.open(FILE_NAME, 1000);

         controller.fill(0, 1, NUMBER_LINES * SIZE, (byte)'j');

         final ArrayList<ByteBuffer> buffers = new ArrayList<ByteBuffer>();

         BufferCallback bufferCallback = new BufferCallback()
         {
View Full Code Here

Examples of org.hornetq.core.journal.SequentialFile.fill()

      sequentialFile.open(1, false);

      if (init)
      {
         sequentialFile.fill(0, fileSize, JournalImpl.FILL_CHARACTER);

         JournalImpl.initFileHeader(fileFactory, sequentialFile, userVersion, fileID);
      }

      long position = sequentialFile.position();
View Full Code Here

Examples of org.hsqldb.lib.HsqlByteArrayOutputStream.fill()

            rowOut.reset();

            HsqlByteArrayOutputStream out = rowOut.getOutputStream();

            out.fill(' ', length);
            out.write(ScriptWriterText.BYTES_LINE_SEP);
            dataFile.seek(row.getPos());
            dataFile.write(out.getBuffer(), 0, out.size());
        } catch (IOException e) {
            throw Error.runtimeError(ErrorCode.U_S0500, e.getMessage());
View Full Code Here

Examples of org.hsqldb_voltpatches.lib.HsqlByteArrayOutputStream.fill()

            rowOut.reset();

            HsqlByteArrayOutputStream out = rowOut.getOutputStream();

            out.fill(' ', length);
            out.write(ScriptWriterText.BYTES_LINE_SEP);
            dataFile.seek(row.getPos());
            dataFile.write(out.getBuffer(), 0, out.size());
        } catch (IOException e) {
            throw Error.runtimeError(ErrorCode.U_S0500, e.getMessage());
View Full Code Here

Examples of org.jquantlib.math.matrixutilities.Array.fill()

        final GenericSequenceStatistics ss = new GenericSequenceStatistics(dimension);
       
        /*@Size*/ int i;
        for (i = 0; i<data.size(); i++) {
          Array temp = new Array(dimension);
          temp.fill(data.get(i));
            ss.add(temp, weights.get(i));
        }

        Array calculated;
        /*@Real*/ double expected, tolerance;
View Full Code Here

Examples of org.locationtech.udig.ui.graphics.ViewportGraphics.fill()

                    }
                    path.closePath();
                }
            }
           
            graphic.fill(path);
   
            //rgba = style.foregroundColor.getColorComponents(null);
            //g.setColor(new Color(rgba[0], rgba[1], rgba[2], style.fAlpha));
            graphic.setColor(new Color((float)0.5, (float)0.5, (float)0.5, (float)0.75));
            graphic.setStroke(ViewportGraphics.LINE_SOLID, 1);
View Full Code Here

Examples of org.nutz.ioc.weaver.DefaultWeaver.fill()

      }
      dw.setFields(fields);

      // 如果是单例对象,前面已经生成实例了,在这里需要填充一下它的字段
      if (null != obj)
        dw.fill(ing, obj);

      // 对象创建完毕,如果有 create 事件,调用它
      dw.onCreate(obj);

    }
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.