-
Notifications
You must be signed in to change notification settings - Fork 29
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add Resizable with 'resizeLocations' to shape elements
- Use string for GResizeLocation - Fix issue with issue severity not being of type string - Fix minor issue with wrong EClass mapping for weighted edge
- Loading branch information
1 parent
fc5d3b8
commit e756973
Showing
25 changed files
with
897 additions
and
28 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
52 changes: 52 additions & 0 deletions
52
plugins/org.eclipse.glsp.graph/src-gen/org/eclipse/glsp/graph/GResizable.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
/** | ||
* Copyright (c) 2019-2022 EclipseSource and others. | ||
* | ||
* This program and the accompanying materials are made available under the | ||
* terms of the Eclipse Public License v. 2.0 which is available at | ||
* https://www.eclipse.org/legal/epl-2.0. | ||
* | ||
* This Source Code may also be made available under the following Secondary | ||
* Licenses when the conditions for such availability set forth in the Eclipse | ||
* Public License v. 2.0 are satisfied: GNU General Public License, version 2 | ||
* with the GNU Classpath Exception which is available at | ||
* https://www.gnu.org/software/classpath/license.html. | ||
* | ||
* SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 | ||
* ******************************************************************************** | ||
*/ | ||
package org.eclipse.glsp.graph; | ||
|
||
import org.eclipse.emf.common.util.EList; | ||
|
||
import org.eclipse.emf.ecore.EObject; | ||
|
||
/** | ||
* <!-- begin-user-doc --> | ||
* A representation of the model object '<em><b>GResizable</b></em>'. | ||
* <!-- end-user-doc --> | ||
* | ||
* <p> | ||
* The following features are supported: | ||
* </p> | ||
* <ul> | ||
* <li>{@link org.eclipse.glsp.graph.GResizable#getResizeLocations <em>Resize Locations</em>}</li> | ||
* </ul> | ||
* | ||
* @see org.eclipse.glsp.graph.GraphPackage#getGResizable() | ||
* @model | ||
* @generated | ||
*/ | ||
public interface GResizable extends EObject { | ||
/** | ||
* Returns the value of the '<em><b>Resize Locations</b></em>' attribute list. | ||
* The list contents are of type {@link java.lang.String}. | ||
* <!-- begin-user-doc --> | ||
* <!-- end-user-doc --> | ||
* @return the value of the '<em>Resize Locations</em>' attribute list. | ||
* @see org.eclipse.glsp.graph.GraphPackage#getGResizable_ResizeLocations() | ||
* @model | ||
* @generated | ||
*/ | ||
EList<String> getResizeLocations(); | ||
|
||
} // GResizable |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.