Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: ec80704e10bc7ad1271c31bc2a01d7e812173e1f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
/*******************************************************************************
 * Copyright (c) 2007-2013 THALES GLOBAL SERVICES.
 * 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:
 *    Obeo - initial API and implementation
 *******************************************************************************/
package org.eclipse.sirius.editor.properties.filters.description.orderedtreelayout;

// Start of user code specific imports

import org.eclipse.emf.ecore.EStructuralFeature;

import org.eclipse.sirius.description.DescriptionPackage;
import org.eclipse.sirius.editor.properties.filters.common.SiriusPropertyFilter;

// End of user code specific imports

/**
 * A filter for the childrenExpression property section.
 */
public class OrderedTreeLayoutChildrenExpressionFilter extends SiriusPropertyFilter {

    /**
     * {@inheritDoc}
     */
    protected EStructuralFeature getFeature() {
        return DescriptionPackage.eINSTANCE.getOrderedTreeLayout_ChildrenExpression();
    }

    /**
     * {@inheritDoc}
     */
    protected boolean isRightInputType(Object arg0) {
        return arg0 instanceof org.eclipse.sirius.description.OrderedTreeLayout;
    }

    // Start of user code user methods

    // End of user code user methods

}

Back to the top