Examples of SectionData


Examples of com.pcmsolutions.device.EMU.E4.gui.table.SectionData

        columnData[0] = new ColumnData("Product", 100, JLabel.LEFT, 0, String.class, null, null);
        columnData[1] = new ColumnData("Type", 120, JLabel.LEFT, 0, String.class, null, null);
        columnData[2] = new ColumnData("Load", 50, JLabel.LEFT, 0, String.class, null, null);
        columnData[3] = new ColumnData("Licensee", 180, JLabel.LEFT, 0, String.class, null, null);
        columnData[4] = new ColumnData("Key String", 200, JLabel.LEFT, 0, String.class, null, null);
        sectionData = new SectionData[]{new SectionData(UIColors.getTableFirstSectionBG(), UIColors.getTableFirstSectionFG(), 650, "")};
    }
View Full Code Here

Examples of org.apache.stanbol.enhancer.engines.entitylinking.impl.SectionData

        if(tokenIt == null || !tokenIt.hasNext()){
            sectionData = null;
            tokenIt = null;
            while(sections.hasNext() && (tokenIt == null || !tokenIt.hasNext())){
                //analyse NLP results for the next Section
                sectionData = new SectionData(lpc, sections.next(),
                    PROCESSED_SPAN_TYPES, isUnicaseLanguage);
                tokenIt = sectionData.getTokens().iterator();
            }
            if(tokenIt != null && tokenIt.hasNext()){
                addToken(tokenIt.next());
View Full Code Here

Examples of org.boris.pecoff4j.SectionData

    private static void writeSection(PE pe, DataEntry entry, IDataWriter dw)
            throws IOException {
        SectionTable st = pe.getSectionTable();
        SectionHeader sh = st.getHeader(entry.index);
        SectionData sd = st.getSection(entry.index);
        int prd = sh.getPointerToRawData();
        if (prd > dw.getPosition()) {
            byte[] pa = sd.getPreamble();
            if (pa != null) {
                dw.writeBytes(pa);
            } else {
                dw.writeByte(0, prd - dw.getPosition());
            }
        }

        byte[] b = sd.getData();
        dw.writeBytes(b);
    }
View Full Code Here

Examples of pl.tecna.gwt.connectors.client.util.SectionData

  public void rememberSectionsPositions() {
    savedSectionsData = new ArrayList<SectionData>();

    for (Section section : sections) {
      savedSectionsData.add(new SectionData(section.startPoint.getLeft().intValue(), section.startPoint.getTop()
          .intValue(), section.endPoint.getLeft().intValue(), section.endPoint.getTop().intValue(), section
          .isVertical()));
    }
  }
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.