forked from librewsdl4j/libre-wsdl4j
-
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
Olivier D
committed
Apr 25, 2021
1 parent
26e71f7
commit 5e4dcb0
Showing
8 changed files
with
27 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,8 +10,7 @@ | |
/** | ||
* @author Jeremy Hughes <[email protected]> | ||
*/ | ||
public class SchemaReferenceImpl implements SchemaReference | ||
{ | ||
public class SchemaReferenceImpl implements SchemaReference { | ||
|
||
public static final long serialVersionUID = 1; | ||
|
||
|
@@ -24,48 +23,45 @@ public class SchemaReferenceImpl implements SchemaReference | |
/** | ||
* @return Returns the id. | ||
*/ | ||
public String getId() | ||
{ | ||
public String getId() { | ||
return this.id; | ||
} | ||
|
||
/** | ||
* @param id The id to set. | ||
* @param id | ||
* The id to set. | ||
*/ | ||
public void setId(String id) | ||
{ | ||
public void setId(String id) { | ||
this.id = id; | ||
} | ||
|
||
/** | ||
* @return Returns the schemaLocation. | ||
*/ | ||
public String getSchemaLocationURI() | ||
{ | ||
public String getSchemaLocationURI() { | ||
return this.schemaLocation; | ||
} | ||
|
||
/** | ||
* @param schemaLocation The schemaLocation to set. | ||
* @param schemaLocation | ||
* The schemaLocation to set. | ||
*/ | ||
public void setSchemaLocationURI(String schemaLocation) | ||
{ | ||
public void setSchemaLocationURI(String schemaLocation) { | ||
this.schemaLocation = schemaLocation; | ||
} | ||
|
||
/** | ||
* @return Returns the importedSchema. | ||
*/ | ||
public Schema getReferencedSchema() | ||
{ | ||
public Schema getReferencedSchema() { | ||
return this.referencedSchema; | ||
} | ||
|
||
/** | ||
* @param referencedSchema The importedSchema to set. | ||
* @param referencedSchema | ||
* The importedSchema to set. | ||
*/ | ||
public void setReferencedSchema(Schema referencedSchema) | ||
{ | ||
public void setReferencedSchema(Schema referencedSchema) { | ||
this.referencedSchema = referencedSchema; | ||
} | ||
} |
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