Examples of Properties


Examples of am.ik.tools.pom_cleaner.jaxb.Model.Properties

                    properties);
            sortVersionable(model.getReporting().getPlugins().getPlugin());
        } catch (NullPointerException e) {
        }

        Properties p = model.getProperties();
        if (p == null) {
            p = new Properties();
            model.setProperties(p);
        }
        addProperties(p, properties);
        Collections.sort(p.getAny(), new Comparator<Element>() {
            @Override
            public int compare(Element o1, Element o2) {
                return o1.getTagName().compareToIgnoreCase(o2.getTagName());
            }
        });
View Full Code Here

Examples of bm.core.Properties

                    true
            );
        }
        if( is != null )
        {
            return new Properties( is );
        }
        else
        {
            return null;
        }
View Full Code Here

Examples of civquest.swing.quadmap.Properties

  private class DashBorderPainter extends BorderPainter {
    public void paintBorder(Graphics g, Coordinate position, Coordinate offset,
                Coordinate paintCoord) {
     
      Properties properties = quadMap.getProperties();
     
      Coordinate[] cornerCoords = properties.getAbsFieldEdgeCoords(position, offset);

      // Ensure that we don't use the same line as1 the SE/SW-fields
      if (offset.x == 1) {
        cornerCoords[0].x--;
        cornerCoords[1].x--;
View Full Code Here

Examples of com.bacoder.parser.javaproperties.api.Properties

            }
            return null;
          }
        });

    Properties properties = createData(context);
    properties.setComments(comments);
    properties.setKeyValues(keyValues);
    return properties;
  }
View Full Code Here

Examples of com.elondra.rp.Properties

            }
            os = new FileOutputStream( file );
            for( final Iterator i = consolidated.keySet().iterator(); i.hasNext(); )
            {
                final String language = (String) i.next();
                final Properties lang = (Properties) consolidated.get( language );
                System.out.println( "Processing language: " + language + ", " + lang.size() + " entries" );
                for( final Iterator j = lang.keySet().iterator(); j.hasNext(); )
                {
                    final String key = (String) j.next();
                    final String value = lang.getProperty( key );
                    index.insertObject( language + "#" + key, value );
                }
            }
            System.out.println( "Index size: " + store.getSize() + " bytes" );
            writeIndex( index, os );
View Full Code Here

Examples of com.enernoc.open.oadr2.model.Properties

                .withPriority(1L)
                .withEiMarketContext(new EiMarketContext(
                    new MarketContext("http://enernoc.com")))
                .withCreatedDateTime(new DateTime(startDttm)))
            .withEiActivePeriod(new EiActivePeriod()
                .withProperties(new Properties()
                    .withDtstart(new Dtstart(new DateTime(startDttm)))
                    .withDuration(new DurationPropType(new DurationValue("PT1M")))
                    .withTolerance( new Tolerance(new Tolerate(new DurationValue("PT5S"))))
                    .withXEiNotification(new DurationPropType(new DurationValue("PT5S")))
                ))
View Full Code Here

Examples of com.enernoc.open.oadr2.model.v20b.xcal.Properties

                    .withPriority(1L)
                    .withEiMarketContext(new EiMarketContext(
                        new MarketContext("http://enernoc.com")))
                    .withCreatedDateTime(new DateTime(startDttm)))
                .withEiActivePeriod(new EiActivePeriod()
                    .withProperties(new Properties()
                        .withDtstart(new Dtstart(new DateTime(startDttm)))
                        .withDuration(new DurationPropType(new DurationValue("PT1M")))
                        .withTolerance( new Tolerance(new Tolerate(new DurationValue("PT5S"))))
                        .withXEiNotification(new DurationPropType(new DurationValue("PT5S")))
                    ))
View Full Code Here

Examples of com.eviware.soapui.junit.Properties

    systemOut = new StringBuffer();
    systemErr = new StringBuffer();

    testsuiteDoc = TestsuiteDocument.Factory.newInstance();
    Testsuite testsuite = testsuiteDoc.addNewTestsuite();
    Properties properties = testsuite.addNewProperties();
    setSystemProperties( properties );
  }
View Full Code Here

Examples of com.filenet.api.property.Properties

    this.metas = getMetas();
  }

  private Map<String,Property> getMetas() {
    Map<String,Property> propMap = new HashMap<String,Property>();
    Properties props = doc.getProperties();
    Property[] propList = props.toArray();
    for (Property property : propList) {
      propMap.put(property.getPropertyName(), property);
    }
    return propMap;
  }
View Full Code Here

Examples of com.fiveht.tick.data.Properties

       
        init();
    }

    private void init() throws SQLException {
        Properties p = Properties.getInstance();
       
        setLocation(p.getInt("x"), p.getInt("y"));
        setSize(p.getInt("width", 360), p.getInt("height", 480));
        setIconImage(Toolkit.getDefaultToolkit().getImage(Frame.class.getResource("/com/fiveht/tick/icons/clock.png")));
       
        addWindowListener(this);
        view.addExitListener(this);
       
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.