Skip to content

Commit

Permalink
Exposed getChildren method of GraphEditorContainer
Browse files Browse the repository at this point in the history
  • Loading branch information
rmfisher committed May 20, 2015
1 parent 5d7ad23 commit cc83611
Show file tree
Hide file tree
Showing 6 changed files with 15 additions and 48 deletions.
4 changes: 2 additions & 2 deletions api/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<parent>
<groupId>de.tesis.dynaware</groupId>
<artifactId>de.tesis.dynaware.grapheditor</artifactId>
<version>1.3.0</version>
<version>1.3.1</version>
</parent>
<name>${component.name}::API</name>

Expand Down Expand Up @@ -55,7 +55,7 @@
<artifactId>maven-bundle-plugin</artifactId>
<configuration>
<instructions>
<Require-Bundle>de.tesis.dynaware.grapheditor.model;bundle-version="[1.3.0,2.0.0)",
<Require-Bundle>de.tesis.dynaware.grapheditor.model;bundle-version="[1.3.1,2.0.0)",
org.eclipse.fx.javafx;bundle-version="[2.2.0,3.0.0)",
org.eclipse.emf.edit;bundle-version="[2.9.0,3.0.0)"</Require-Bundle>
<Export-Package>de.tesis.dynaware.grapheditor,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
import javafx.beans.property.DoubleProperty;
import javafx.beans.property.SimpleDoubleProperty;
import javafx.beans.value.ChangeListener;
import javafx.collections.ObservableList;
import javafx.event.EventHandler;
import javafx.geometry.Point2D;
import javafx.scene.CacheHint;
Expand Down Expand Up @@ -246,6 +247,11 @@ public void setCacheWhileMouseOutside(final boolean cacheWhileMouseOutside) {
this.cacheWhileMouseOutside = cacheWhileMouseOutside;
}

@Override
public ObservableList<Node> getChildren() {
return super.getChildren();
}

/**
* Sets the content of the panning window.
*
Expand Down
6 changes: 3 additions & 3 deletions core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<parent>
<groupId>de.tesis.dynaware</groupId>
<artifactId>de.tesis.dynaware.grapheditor</artifactId>
<version>1.3.0</version>
<version>1.3.1</version>
</parent>
<name>${component.name}::Core</name>

Expand Down Expand Up @@ -48,8 +48,8 @@
<artifactId>maven-bundle-plugin</artifactId>
<configuration>
<instructions>
<Require-Bundle>de.tesis.dynaware.grapheditor.model;bundle-version="[1.3.0,2.0.0)",
de.tesis.dynaware.grapheditor.api;bundle-version="[1.3.0,1.4.0)",
<Require-Bundle>de.tesis.dynaware.grapheditor.model;bundle-version="[1.3.1,2.0.0)",
de.tesis.dynaware.grapheditor.api;bundle-version="[1.3.1,1.4.0)",
org.eclipse.fx.javafx;bundle-version="[2.2.0,3.0.0)",
org.eclipse.emf.edit;bundle-version="[2.9.0,3.0.0)",
org.eclipse.emf.ecore.xmi;bundle-version="[2.9.1,3.0.0)"</Require-Bundle>
Expand Down
2 changes: 1 addition & 1 deletion demo/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<parent>
<groupId>de.tesis.dynaware</groupId>
<artifactId>de.tesis.dynaware.grapheditor</artifactId>
<version>1.3.0</version>
<version>1.3.1</version>
</parent>
<name>${component.name}::Demo</name>

Expand Down
2 changes: 1 addition & 1 deletion model/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<parent>
<groupId>de.tesis.dynaware</groupId>
<artifactId>de.tesis.dynaware.grapheditor</artifactId>
<version>1.3.0</version>
<version>1.3.1</version>
</parent>
<name>${component.name}::Model</name>

Expand Down
43 changes: 2 additions & 41 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<name>${component.name}</name>
<groupId>de.tesis.dynaware</groupId>
<artifactId>de.tesis.dynaware.grapheditor</artifactId>
<version>1.3.0</version>
<version>1.3.1</version>
<packaging>pom</packaging>

<description>A library for creating and editing graph-like diagrams in JavaFX</description>
Expand Down Expand Up @@ -41,12 +41,10 @@

<properties>
<component.name>Graph Editor</component.name>
<manifest.bundle.version>1.3.0-${maven.build.timestamp}</manifest.bundle.version>
<manifest.bundle.version>1.3.1-${maven.build.timestamp}</manifest.bundle.version>
<maven.build.timestamp.format>yyyymmddhhmm</maven.build.timestamp.format>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<compiler.version>1.8</compiler.version>
<sonar.java.source>${compiler.version}</sonar.java.source>
<sonar.java.target>${compiler.version}</sonar.java.target>
<maven.compiler.plugin.version>3.1</maven.compiler.plugin.version>
<maven.surefire.plugin.version>2.17</maven.surefire.plugin.version>
<maven.bundle.plugin.version>2.4.0</maven.bundle.plugin.version>
Expand All @@ -60,8 +58,6 @@
<org.eclipse.emf.edit.version>2.3.0-v200706262000</org.eclipse.emf.edit.version>
<junit.version>4.11</junit.version>
<mockito.version>1.9.5</mockito.version>
<jacoco.version>0.7.1.201405082137</jacoco.version>
<sonar.jacoco.reportPath>${project.basedir}/target/jacoco.exec</sonar.jacoco.reportPath>
<org.slf4j.version>1.7.5</org.slf4j.version>
<ch.qos.logback.version>1.0.13</ch.qos.logback.version>
</properties>
Expand All @@ -81,41 +77,6 @@
</distributionManagement>

<profiles>
<profile>
<id>sonar</id>
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
<version>${jacoco.version}</version>
<executions>
<execution>
<id>jacoco-initialize</id>
<goals>
<goal>prepare-agent</goal>
</goals>
<configuration>
<append>true</append>
<destFile>${sonar.jacoco.reportPath}</destFile>
<includes>
<include>de.tesis.dynaware.*</include>
</includes>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</pluginManagement>
<plugins>
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
</plugin>
</plugins>
</build>
</profile>
<profile>
<id>release</id>
<activation>
Expand Down

0 comments on commit cc83611

Please sign in to comment.