forked from pentaho/pentaho-kettle
-
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.
Making Translator2 more generic for possible re-use in other projects.
git-svn-id: svn://source.pentaho.org/svnkettleroot/Kettle/trunk@10004 5fb7f6ec-07c1-534a-b4ca-9155e429e800
- Loading branch information
mcasters
committed
Jan 15, 2009
1 parent
fcf6365
commit 62c7a22
Showing
6 changed files
with
325 additions
and
59 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
46 changes: 46 additions & 0 deletions
46
src-ui/org/pentaho/di/ui/i18n/SourceCrawlerPackageException.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,46 @@ | ||
package org.pentaho.di.ui.i18n; | ||
|
||
public class SourceCrawlerPackageException { | ||
private String startsWith; | ||
private String packageName; | ||
|
||
/** | ||
* @param startsWiths | ||
* @param packageName | ||
*/ | ||
public SourceCrawlerPackageException(String startsWith, String packageName) { | ||
this.startsWith = startsWith; | ||
this.packageName = packageName; | ||
} | ||
|
||
/** | ||
* @return the startsWith | ||
*/ | ||
public String getStartsWith() { | ||
return startsWith; | ||
} | ||
|
||
/** | ||
* @param startsWith | ||
* the startsWith to set | ||
*/ | ||
public void setStartsWith(String startsWith) { | ||
this.startsWith = startsWith; | ||
} | ||
|
||
/** | ||
* @return the packageName | ||
*/ | ||
public String getPackageName() { | ||
return packageName; | ||
} | ||
|
||
/** | ||
* @param packageName | ||
* the packageName to set | ||
*/ | ||
public void setPackageName(String packageName) { | ||
this.packageName = packageName; | ||
} | ||
|
||
} |
39 changes: 39 additions & 0 deletions
39
src-ui/org/pentaho/di/ui/i18n/SourceCrawlerXMLElement.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,39 @@ | ||
package org.pentaho.di.ui.i18n; | ||
|
||
public class SourceCrawlerXMLElement { | ||
private String element; | ||
private String label; | ||
|
||
/** | ||
* @param element | ||
* @param label | ||
*/ | ||
public SourceCrawlerXMLElement(String element, String label) { | ||
this.element = element; | ||
this.label = label; | ||
} | ||
/** | ||
* @return the element | ||
*/ | ||
public String getElement() { | ||
return element; | ||
} | ||
/** | ||
* @param element the element to set | ||
*/ | ||
public void setElement(String element) { | ||
this.element = element; | ||
} | ||
/** | ||
* @return the label | ||
*/ | ||
public String getLabel() { | ||
return label; | ||
} | ||
/** | ||
* @param label the label to set | ||
*/ | ||
public void setLabel(String label) { | ||
this.label = label; | ||
} | ||
} |
Oops, something went wrong.