/****************************************************************************** * Copyright (c) 2016 Oracle * 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: * Konstantin Komissarchik - initial implementation and ongoing maintenance ******************************************************************************/ package org.eclipse.sapphire.tests.element; import org.eclipse.sapphire.Element; import org.eclipse.sapphire.ElementHandle; import org.eclipse.sapphire.ElementList; import org.eclipse.sapphire.ElementProperty; import org.eclipse.sapphire.ElementType; import org.eclipse.sapphire.ImpliedElementProperty; import org.eclipse.sapphire.ListProperty; import org.eclipse.sapphire.Transient; import org.eclipse.sapphire.TransientProperty; import org.eclipse.sapphire.Type; import org.eclipse.sapphire.Value; import org.eclipse.sapphire.ValueProperty; import org.eclipse.sapphire.modeling.annotations.DefaultValue; /** * @author <a href="mailto:konstantin.komissarchik@oracle.com">Konstantin Komissarchik</a> */ public interface CopyTestElementRoot extends Element { ElementType TYPE = new ElementType( CopyTestElementRoot.class ); // *** ValueProperty1 *** ValueProperty PROP_VALUE_PROPERTY_1 = new ValueProperty( TYPE, "ValueProperty1" ); Value<String> getValueProperty1(); void setValueProperty1( String value ); // *** ValueProperty2 *** @Type( base = Integer.class ) ValueProperty PROP_VALUE_PROPERTY_2 = new ValueProperty( TYPE, "ValueProperty2" ); Value<Integer> getValueProperty2(); void setValueProperty2( String value ); void setValueProperty2( Integer value ); // *** ValueProperty3 *** @Type( base = Integer.class ) @DefaultValue( text = "5" ) ValueProperty PROP_VALUE_PROPERTY_3 = new ValueProperty( TYPE, "ValueProperty3" ); Value<Integer> getValueProperty3(); void setValueProperty3( String value ); void setValueProperty3( Integer value ); // *** ImpliedElementProperty1 *** @Type( base = CopyTestElementChild.class ) ImpliedElementProperty PROP_IMPLIED_ELEMENT_PROPERTY_1 = new ImpliedElementProperty( TYPE, "ImpliedElementProperty1" ); CopyTestElementChild getImpliedElementProperty1(); // *** ImpliedElementProperty2 *** @Type( base = CopyTestElementChildEx.class ) ImpliedElementProperty PROP_IMPLIED_ELEMENT_PROPERTY_2 = new ImpliedElementProperty( TYPE, "ImpliedElementProperty2" ); CopyTestElementChildEx getImpliedElementProperty2(); // *** ElementProperty1 *** @Type( base = CopyTestElementChild.class ) ElementProperty PROP_ELEMENT_PROPERTY_1 = new ElementProperty( TYPE, "ElementProperty1" ); ElementHandle<CopyTestElementChild> getElementProperty1(); // *** ElementProperty2 *** @Type( base = CopyTestElementChild.class, possible = { CopyTestElementChild.class, CopyTestElementChildEx.class } ) ElementProperty PROP_ELEMENT_PROPERTY_2 = new ElementProperty( TYPE, "ElementProperty2" ); ElementHandle<CopyTestElementChild> getElementProperty2(); // *** ListProperty1 *** @Type( base = CopyTestElementChild.class ) ListProperty PROP_LIST_PROPERTY_1 = new ListProperty( TYPE, "ListProperty1" ); ElementList<CopyTestElementChild> getListProperty1(); // *** ListProperty2 *** @Type( base = CopyTestElementChild.class, possible = { CopyTestElementChild.class, CopyTestElementChildEx.class } ) ListProperty PROP_LIST_PROPERTY_2 = new ListProperty( TYPE, "ListProperty2" ); ElementList<CopyTestElementChild> getListProperty2(); // *** TransientProperty *** @Type( base = Object.class ) TransientProperty PROP_TRANSIENT_PROPERTY = new TransientProperty( TYPE, "TransientProperty" ); Transient<Object> getTransientProperty(); void setTransientProperty( Object value ); }