This repository has been archived by the owner on Mar 17, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
88241ad
commit be20dbf
Showing
7 changed files
with
32 additions
and
196 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
39 changes: 0 additions & 39 deletions
39
src/main/java/net/explorviz/extension/vr/model/DummyModel.java
This file was deleted.
Oops, something went wrong.
28 changes: 28 additions & 0 deletions
28
src/main/java/net/explorviz/extension/vr/model/HighlightingModel.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,28 @@ | ||
package net.explorviz.extension.vr.model; | ||
|
||
public class HighlightingModel { | ||
|
||
private final String highlightedApp; | ||
private final String highlightedEntity; | ||
private final long originalColor; | ||
|
||
public HighlightingModel(final boolean isHighlighted, final String appID, final String entityID, | ||
final long originalColor) { | ||
this.highlightedApp = appID; | ||
this.highlightedEntity = entityID; | ||
this.originalColor = originalColor; | ||
} | ||
|
||
public String getHighlightedApp() { | ||
return highlightedApp; | ||
} | ||
|
||
public String getHighlightedEntity() { | ||
return highlightedEntity; | ||
} | ||
|
||
public long getOriginalColor() { | ||
return originalColor; | ||
} | ||
|
||
} |
26 changes: 0 additions & 26 deletions
26
src/main/java/net/explorviz/extension/vr/model/SubDummyModel.java
This file was deleted.
Oops, something went wrong.
75 changes: 0 additions & 75 deletions
75
src/main/java/net/explorviz/extension/vr/providers/DummyModelProvider.java
This file was deleted.
Oops, something went wrong.
34 changes: 0 additions & 34 deletions
34
src/main/java/net/explorviz/extension/vr/resources/TestResource.java
This file was deleted.
Oops, something went wrong.