Examples of Version


Examples of de.taimos.maven_redmine_plugin.model.Version

    IOUtil.copy(templateStream, new FileOutputStream("/tmp/feed.rss"));
  }

  private Map<Version, List<Ticket>> getTestData() {
    Map<Version, List<Ticket>> ticketsMap = new LinkedHashMap<>();
    Version firstVersion = new Version();
    firstVersion.setCreated_on(new Date());
    firstVersion.setId(1);
    firstVersion.setName("TEST");
    firstVersion.setDescription("Test version");
    firstVersion.setStatus("READY");

    Ticket firstTicket1 = new Ticket();
    firstTicket1.setId(101);
    firstTicket1.setSubject("First ticket");
    firstTicket1.setDescription("First ticket description");
View Full Code Here

Examples of de.willuhn.jameica.hbci.rmi.Version

    list.addFilter("name = ?",name);
    if (list.hasNext())
      return (Version) list.next();
   
    // Neue Version erstellen
    Version v = (Version) service.createObject(Version.class,null);
    v.setName(name);
    v.store();
    return v;
  }
View Full Code Here

Examples of de.willuhn.jameica.plugin.Version

      //////////////////////////////////


      this.hbciProps = new Properties();
     
      Version v = getManifest().getVersion(); // client.product.name darf hoechstens 25 Zeichen lang sein
      this.hbciProps.put("client.product.name","HBCI4Java (Hibiscus " + v.getMajor() + "." + v.getMinor() + ")");
      this.hbciProps.put("client.product.version",v.getMajor() + "." + v.getMinor()); // Maximal 5 Zeichen
     
      // Wir aktivieren das Infopoint-Feature erstmal. Ob wir das Senden
      // dann zulassen entscheiden wir erst, wenn der Callback aufgerufen
      // wird. Wir schicken in dem Fall eine QueryMessage an den Channel
      // "hibiscus.infopoint".
View Full Code Here

Examples of devplugin.Version

        pb.add(iconLabel, cc.xyw(2,4,3));

        JLabel label3 = new JLabel();

        if (item.isAlreadyInstalled()) {
          Version installedVersion = item.getInstalledVersion();
          if ((installedVersion != null) && (installedVersion.compareTo(item.getVersion()) < 0)) {
            label.setIcon(NEW_VERSION_ICON);

            label3.setText("(" + mLocalizer.msg("installed","Installed version: ") + installedVersion.toString()+")");
            label3.setFont(label3.getFont().deriveFont(label3.getFont().getSize2D()+2));

            pb.add(label3, cc.xy(4,2));
          }
        }
View Full Code Here

Examples of fiftyone.mobile.detection.entities.Version

     * @param reader Reader connected to the source data structure and
     * positioned to start reading
     */
    public Dataset(BinaryReader reader) throws IOException {
        // Read the detection data set headers.
        version = new Version(reader.readInt32(), reader.readInt32(),
                reader.readInt32(), reader.readInt32());

        // Throw exception if the data file does not have the correct
        // version in formation.
        if (version.major != DetectionConstants.FormatVersion.major
View Full Code Here

Examples of freemarker.template.Version

  }

  ModelFormatter() {
    config = new Configuration();
    config.setClassForTemplateLoading(getClass(), "");
    config.setIncompatibleImprovements(new Version(2, 3, 20));
    config.setDefaultEncoding("UTF-8");
    config.setLocale(Locale.US);
    config.setTemplateExceptionHandler(TemplateExceptionHandler.RETHROW_HANDLER);
  }
View Full Code Here

Examples of gov.nist.scap.xccdf.document.Version

    parseCheckingUnits(data);
  }

  private static Version parseVersion(RuleType data) {
    VersionType version = data.getVersion();
    Version retval = null;
    if (version != null) {
      retval = new VersionImpl(version);
    }
    return retval;
  }
View Full Code Here

Examples of io.crate.Version

        crateLoader = CrateLoader.getInstance(settings);
    }

    @Override
    protected void configure() {
        Version version = Version.CURRENT;
        logger.info("configuring crate. version: {}", version);

        bind(CrateLoader.class).toInstance(crateLoader);

        /**
 
View Full Code Here

Examples of io.fabric8.agent.mvn.Version

        final List<Element> elements = XmlUtils.getElements(metadata, "versioning/versions/version");
        if (elements != null && elements.size() > 0) {
            for (Element element : elements) {
                final String versionString = XmlUtils.getTextContent(element);
                if (versionString != null) {
                    final Version version = new Version(versionString);
                    if (versionRange.includes(version)) {
                        if (versionString.endsWith("SNAPSHOT")) {
                            downladables.add(
                                    resolveSnapshotVersion(parser, repositoryURL, priority, versionString)
                            );
View Full Code Here

Examples of io.fabric8.api.Version

  protected Set<String> getSelectedVersionNames() {
    Set<String> answer = new HashSet<String>();
    List<Container> containers = getSelectedContainers();
    for (Container container : containers) {
      Version version = container.getVersion();
      if (version != null) {
        String name = version.getId();
        if (name != null) {
          answer.add(name);
        }
      }
    }
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.