Examples of uniqueId()


Examples of com.sun.jdi.ObjectReference.uniqueID()

   */
  public long getUniqueId() throws DebugException {
    try {
      ObjectReference underlyingObject = getUnderlyingObject();
      if (underlyingObject != null) {
        return underlyingObject.uniqueID();
      }
      return -1L;
    } catch (RuntimeException e) {
      targetRequestFailed(
          MessageFormat.format(
View Full Code Here

Examples of org.dmlite.model.meta.ModelMeta.uniqueId()

      if (domainModel.isInitialized()) {
        ConceptConfig conceptConfig = entity.getConceptConfig();
        if (conceptConfig != null) {
          ModelMeta modelMeta = domainModel.getModelMeta();
          if (!conceptConfig.getIdConfig().isEmpty()) {
            validation = modelMeta.uniqueId(this, entity)
                && validation;
          }
        }
      }
    }
View Full Code Here

Examples of org.dmlite.model.meta.ModelMeta.uniqueId()

      if (domainModel.isInitialized()) {
        ConceptConfig conceptConfig = entity.getConceptConfig();
        if (conceptConfig != null) {
          ModelMeta modelMeta = domainModel.getModelMeta();
          if (!conceptConfig.getIdConfig().isEmpty()) {
            validation = modelMeta.uniqueId(this, entity,
                updateEntity)
                && validation;
          }
        }
      }
View Full Code Here

Examples of org.jbpm.designer.repository.impl.AssetBuilder.uniqueId()

        String name = file.getFileName().toString();
        String location = trimLocation(file);

        AssetBuilder assetBuilder = AssetBuilderFactory.getAssetBuilder(name);
        BasicFileAttributes attrs = getFileSystem(file.toUri().toString()).provider().readAttributes(file, BasicFileAttributes.class);
        assetBuilder.uniqueId(encodeUniqueId(file.toUri().toString()))
                    .location(location)
                    .creationDate(attrs.creationTime() == null ? "" : new Date(attrs.creationTime().toMillis()).toString())
                    .lastModificationDate(attrs.lastModifiedTime() == null ? "" : new Date(attrs.lastModifiedTime().toMillis()).toString())
                    // TODO some provider specific details
                    .description("")
View Full Code Here

Examples of org.traccar.web.client.model.DeviceProperties.uniqueId()

        DeviceProperties deviceProperties = GWT.create(DeviceProperties.class);

        List<ColumnConfig<Device, ?>> columnConfigList = new LinkedList<ColumnConfig<Device, ?>>();
        columnConfigList.add(new ColumnConfig<Device, String>(deviceProperties.name(), 0, "Name"));
        columnConfigList.add(new ColumnConfig<Device, String>(deviceProperties.uniqueId(), 0, "Unique Identifier"));
        columnModel = new ColumnModel<Device>(columnConfigList);

        uiBinder.createAndBindUi(this);

        grid.getSelectionModel().addSelectionChangedHandler(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.