X-Git-Url: https://gerrit.simantics.org/r/gitweb?a=blobdiff_plain;f=org.simantics.objmap2%2Fsrc%2Forg%2Fsimantics%2Fobjmap%2Fgraph%2Fannotations%2FRelatedGetValue.java;fp=org.simantics.objmap2%2Fsrc%2Forg%2Fsimantics%2Fobjmap%2Fgraph%2Fannotations%2FRelatedGetValue.java;h=0000000000000000000000000000000000000000;hb=8b08645397fcc2bb08d5fc0079b60ac2f69bb9f6;hp=163cf30dc307104d0a83e4742ed9d382bbb82ce0;hpb=c2bc02ab23627234920e89e364c2b4b2e7657249;p=simantics%2F3d.git diff --git a/org.simantics.objmap2/src/org/simantics/objmap/graph/annotations/RelatedGetValue.java b/org.simantics.objmap2/src/org/simantics/objmap/graph/annotations/RelatedGetValue.java deleted file mode 100644 index 163cf30d..00000000 --- a/org.simantics.objmap2/src/org/simantics/objmap/graph/annotations/RelatedGetValue.java +++ /dev/null @@ -1,33 +0,0 @@ -/******************************************************************************* - * Copyright (c) 2012, 2013 Association for Decentralized Information Management in - * Industry THTH ry. - * All rights reserved. This program and the accompanying materials - * are made available under the terms of the Eclipse Public License v1.0 - * which accompanies this distribution, and is available at - * http://www.eclipse.org/legal/epl-v10.html - * - * Contributors: - * VTT Technical Research Centre of Finland - initial API and implementation - *******************************************************************************/ -package org.simantics.objmap.graph.annotations; - -import java.lang.annotation.ElementType; -import java.lang.annotation.Retention; -import java.lang.annotation.RetentionPolicy; -import java.lang.annotation.Target; - -import org.simantics.objmap.graph.annotations.meta.IsGetSetRule; -import org.simantics.objmap.graph.rules.adapters.IdentityAdapter; -import org.simantics.objmap.graph.rules.adapters.ValueAdapter; - - - -@Retention(RetentionPolicy.RUNTIME) -@Target(ElementType.METHOD) -//@HasGetSetRuleFactory(RelatedGetSetValueRuleFactory.class) -@IsGetSetRule -@HasSetter(RelatedSetValue.class) -public @interface RelatedGetValue { - String value(); - Class adapter() default IdentityAdapter.class; -}