-
-
Notifications
You must be signed in to change notification settings - Fork 2.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[review] Split off POJOs modelling XML tags into its own package
- Loading branch information
1 parent
9caa9cc
commit 55f3a02
Showing
7 changed files
with
27 additions
and
21 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
4 changes: 2 additions & 2 deletions
4
...rt/lombok/eclipse/dependencies/Child.java → ...bok/eclipse/dependencies/model/Child.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 |
---|---|---|
@@ -1,8 +1,8 @@ | ||
package lombok.eclipse.dependencies; | ||
package lombok.eclipse.dependencies.model; | ||
|
||
import javax.xml.bind.annotation.XmlAttribute; | ||
|
||
public class Child { | ||
@XmlAttribute | ||
String location; | ||
public String location; | ||
} |
8 changes: 4 additions & 4 deletions
8
...lombok/eclipse/dependencies/Provided.java → .../eclipse/dependencies/model/Provided.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 |
---|---|---|
@@ -1,12 +1,12 @@ | ||
package lombok.eclipse.dependencies; | ||
package lombok.eclipse.dependencies.model; | ||
|
||
import javax.xml.bind.annotation.XmlAttribute; | ||
|
||
public class Provided { | ||
@XmlAttribute | ||
String namespace; | ||
public String namespace; | ||
@XmlAttribute | ||
String name; | ||
public String name; | ||
@XmlAttribute | ||
String version; | ||
public String version; | ||
} |
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
12 changes: 6 additions & 6 deletions
12
...lombok/eclipse/dependencies/Required.java → .../eclipse/dependencies/model/Required.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 |
---|---|---|
@@ -1,17 +1,17 @@ | ||
package lombok.eclipse.dependencies; | ||
package lombok.eclipse.dependencies.model; | ||
|
||
import javax.xml.bind.annotation.XmlAttribute; | ||
import javax.xml.bind.annotation.XmlElement; | ||
|
||
public class Required { | ||
@XmlAttribute | ||
String namespace; | ||
public String namespace; | ||
@XmlAttribute | ||
String name; | ||
public String name; | ||
@XmlAttribute | ||
String range; | ||
public String range; | ||
@XmlAttribute | ||
boolean optional; | ||
public boolean optional; | ||
@XmlElement | ||
String filter; | ||
public String filter; | ||
} |
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