1 package org.simantics.modeling.adapters;
3 import org.simantics.db.Resource;
5 public class ChangeInformationProperty {
7 public static enum ChangeInformationPropertyType {
8 CREATEDBY("Author"),CREATEDAT("Created At"),MODIFIEDBY("Last Modified By"),MODIFIEDAT("Last Modified At");
9 final public String label;
10 ChangeInformationPropertyType(String label) {
15 public final Resource resource;
16 public final ChangeInformationPropertyType type;
18 public ChangeInformationProperty(ChangeInformationPropertyType type, Resource resource) {
20 this.resource = resource;