Skip to content

Commit

Permalink
EmfParsleyDslImplicitlyImportedFeatures in Java
Browse files Browse the repository at this point in the history
  • Loading branch information
LorenzoBettini committed Nov 22, 2023
1 parent d4e4495 commit 22f64df
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 22 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
/**
* Copyright (c) 2013 RCP Vision (http://www.rcp-vision.com) and others.
* 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:
* Lorenzo Bettini - initial API and implementation
*/
package org.eclipse.emf.parsley.dsl.scoping;

import java.util.List;

import org.eclipse.emf.parsley.util.DatabindingUtil;
import org.eclipse.swt.widgets.Widget;
import org.eclipse.xtext.xbase.scoping.batch.ImplicitlyImportedFeatures;

public class EmfParsleyDslImplicitlyImportedFeatures extends ImplicitlyImportedFeatures {
@Override
protected List<Class<?>> getExtensionClasses() {
var extensionClasses = super.getExtensionClasses();
extensionClasses.add(Widget.class);
extensionClasses.add(DatabindingUtil.class);
return extensionClasses;
}
}

This file was deleted.

0 comments on commit 22f64df

Please sign in to comment.