diff options
author | Taeyoung Son <taeyoung2.son@samsung.com> | 2014-05-28 16:32:35 +0900 |
---|---|---|
committer | Taeyoung Son <taeyoung2.son@samsung.com> | 2014-06-09 16:17:59 +0900 |
commit | 9eff72878ccf3c5a5e046b5c4cc8ba4a6697d1f2 (patch) | |
tree | 71e76819d76ccd0ea439af137471eb8310f960c3 | |
parent | a5bce57edfda917ac9740542b3ea07b479d62a8f (diff) | |
download | common-eplugin-9eff72878ccf3c5a5e046b5c4cc8ba4a6697d1f2.tar.gz common-eplugin-9eff72878ccf3c5a5e046b5c4cc8ba4a6697d1f2.tar.bz2 common-eplugin-9eff72878ccf3c5a5e046b5c4cc8ba4a6697d1f2.zip |
BUILD: Added build listener to abstract builder
Added build listener to abstract builder
Change-Id: Ia7087f8ced65b38cb92841916ecf4c1c81052e0b
Signed-off-by: Taeyoung Son <taeyoung2.son@samsung.com>
-rwxr-xr-x | org.tizen.common.builder/src/org/tizen/common/builder/core/AbstractBuilder.java | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/org.tizen.common.builder/src/org/tizen/common/builder/core/AbstractBuilder.java b/org.tizen.common.builder/src/org/tizen/common/builder/core/AbstractBuilder.java index b3c419633..ab5f50fc5 100755 --- a/org.tizen.common.builder/src/org/tizen/common/builder/core/AbstractBuilder.java +++ b/org.tizen.common.builder/src/org/tizen/common/builder/core/AbstractBuilder.java @@ -159,4 +159,8 @@ implements IBuilder } abstract protected BuildResult doBuild(IResource resource) throws BuildException; + + public void addListener(IBuildListener listener) { + this.buildListener = listener; + } } |