Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
- [#86](https://github.com/gemoc/ale-lang/issues/86) The XMI model and the ALE entry point to execute can be set from the *Launch Configuration Tab*
- [#92](https://github.com/gemoc/ale-lang/issues/92) The editor autocompletes attributes and methods of `self`
- [#94](https://github.com/gemoc/ale-lang/issues/94) The editor automatically switches to dark colors when Eclipse IDE is in dark theme
- [#98](https://github.com/gemoc/ale-lang/issues/98) The _New ALE Project_ wizard can be used to create ALE projects

### Changed
- [#93](https://github.com/gemoc/ale-lang/issues/93) More tokens are available to tailor editor's syntax coloring
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,9 @@ Bundle-Version: 1.1.0.qualifier
Bundle-ActivationPolicy: lazy
Bundle-Activator: org.eclipse.emf.ecoretools.ale.ide.ui.Activator
Export-Package: org.eclipse.emf.ecoretools.ale.ide.ui.launchconfig,
org.eclipse.emf.ecoretools.ale.ide.ui.services
org.eclipse.emf.ecoretools.ale.ide.ui.project;x-friends:="org.eclipse.emf.ecoretools.ale.ide.ui.tests",
org.eclipse.emf.ecoretools.ale.ide.ui.services,
org.eclipse.emf.ecoretools.ale.ide.ui.wizards
Require-Bundle: org.eclipse.emf.ecoretools.ale.ide,
org.eclipse.ui.workbench,
org.eclipse.ui,
Expand All @@ -21,7 +23,11 @@ Require-Bundle: org.eclipse.emf.ecoretools.ale.ide,
org.eclipse.sirius.common,
org.eclipse.sirius.common.acceleo.aql,
org.eclipse.emf.ecoretools.ale.xtext,
org.eclipse.emf.ecoretools.design
org.eclipse.emf.ecoretools.design,
org.eclipse.jdt.core;resolution:=optional,
org.eclipse.jdt.launching;resolution:=optional,
org.eclipse.sirius.ext.base,
org.eclipse.sirius.ui
Bundle-Vendor: Inria/Obeo
Bundle-RequiredExecutionEnvironment: JavaSE-1.8
Automatic-Module-Name: org.eclipse.emf.ecoretools.ale.ide.ui
15 changes: 15 additions & 0 deletions plugins/org.eclipse.emf.ecoretools.ale.ide.ui/plugin.xml
Original file line number Diff line number Diff line change
Expand Up @@ -102,4 +102,19 @@
id="org.eclipse.emf.ecoretools.ale.ide.ui.launcher.image">
</launchConfigurationTypeImage>
</extension>
<extension
point="org.eclipse.ui.newWizards">
<wizard
category="org.eclipse.emf.ecoretools.ale.ide.ui.category"
class="org.eclipse.emf.ecoretools.ale.ide.ui.wizards.NewAleProjectWizard"
icon="icons/ALE.gif"
id="org.eclipse.emf.ecoretools.ale.ide.ui.wizards.newProject"
name="ALE Project"
project="true">
</wizard>
<category
id="org.eclipse.emf.ecoretools.ale.ide.ui.category"
name="ALE">
</category>
</extension>
</plugin>
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*******************************************************************************
* Copyright (c) 2019 Inria and Obeo.
* Copyright (c) 2019-2020 Inria and Obeo.
* 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
Expand All @@ -18,7 +18,7 @@
/**
* Utility methods for dealing with UI.
*/
final class UiUtils {
public final class UiUtils {

private UiUtils() {
// utility class should not be instantiated
Expand Down
Loading