-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
6 changed files
with
99 additions
and
10 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,7 +7,7 @@ plugins { | |
} | ||
|
||
group = 'com.vertexvis' | ||
version = '0.7.0' | ||
version = '0.7.1' | ||
|
||
repositories { | ||
mavenCentral() | ||
|
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
48 changes: 48 additions & 0 deletions
48
src/main/java/com/vertexvis/model/AnyOfGeometrySetDataPartRevisionDataPartRenditionData.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,48 @@ | ||
package com.vertexvis.model; | ||
|
||
public class AnyOfGeometrySetDataPartRevisionDataPartRenditionData { | ||
private Object value = null; | ||
|
||
public AnyOfGeometrySetDataPartRevisionDataPartRenditionData() { | ||
} | ||
|
||
public AnyOfGeometrySetDataPartRevisionDataPartRenditionData(GeometrySetData value) { | ||
this.value = value; | ||
} | ||
|
||
public AnyOfGeometrySetDataPartRevisionDataPartRenditionData(PartRevisionData value) { | ||
this.value = value; | ||
} | ||
|
||
public AnyOfGeometrySetDataPartRevisionDataPartRenditionData(PartRenditionData value) { | ||
this.value = value; | ||
} | ||
|
||
public Object getRel() { | ||
return value; | ||
} | ||
|
||
public boolean isGeometrySetData() { | ||
return value != null && value instanceof GeometrySetData; | ||
} | ||
|
||
public boolean isPartRevisionData() { | ||
return value != null && value instanceof PartRevisionData; | ||
} | ||
|
||
public boolean isPartRenditionData() { | ||
return value != null && value instanceof PartRenditionData; | ||
} | ||
|
||
public GeometrySetData getGeometrySetData() { | ||
return isGeometrySetData() ? (GeometrySetData) value : null; | ||
} | ||
|
||
public PartRevisionData getPartRevisionData() { | ||
return isPartRevisionData() ? (PartRevisionData) value : null; | ||
} | ||
|
||
public PartRenditionData getPartRenditionData() { | ||
return isPartRenditionData() ? (PartRenditionData) value : null; | ||
} | ||
} |
41 changes: 41 additions & 0 deletions
41
src/main/java/com/vertexvis/model/AnyOfGeometrySetRelationshipPartRevisionRelationship.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,41 @@ | ||
package com.vertexvis.model; | ||
|
||
public class AnyOfGeometrySetRelationshipPartRevisionRelationship { | ||
private GeometrySetRelationship gsRel = null; | ||
private PartRevisionRelationship prRel = null; | ||
|
||
public AnyOfGeometrySetRelationshipPartRevisionRelationship(GeometrySetRelationship gsRel) { | ||
this.gsRel = gsRel; | ||
} | ||
|
||
public AnyOfGeometrySetRelationshipPartRevisionRelationship(PartRevisionRelationship prRel) { | ||
this.prRel = prRel; | ||
} | ||
|
||
public Object getRel() { | ||
if (this.gsRel != null) { | ||
return this.gsRel; | ||
} | ||
if (this.prRel != null) { | ||
return this.prRel; | ||
} | ||
|
||
return null; | ||
} | ||
|
||
public boolean isGeometrySetRel() { | ||
return this.gsRel != null; | ||
} | ||
|
||
public boolean isPartRevisionRel() { | ||
return this.prRel != null; | ||
} | ||
|
||
public GeometrySetRelationship getGeometrySetRel() { | ||
return gsRel; | ||
} | ||
|
||
public PartRevisionRelationship getPartRevisionRel() { | ||
return prRel; | ||
} | ||
} |