diff options
author | Adam Domurad <adomurad@redhat.com> | 2012-07-10 10:35:52 -0400 |
---|---|---|
committer | Adam Domurad <adomurad@redhat.com> | 2012-07-10 10:35:52 -0400 |
commit | b70936939cf57d11448538dbbcb5ecc535a603dc (patch) | |
tree | d5b191c9f887ae54af64138ac75c40f3d0bbf623 /netx/net/sourceforge/jnlp/JNLPFile.java | |
parent | d61edd76c23e6a1e85a117f39c77ae6a9ac5f8ca (diff) |
Refactor Object launchType; to LaunchDesc launchType; in JNLPFile
Diffstat (limited to 'netx/net/sourceforge/jnlp/JNLPFile.java')
-rw-r--r-- | netx/net/sourceforge/jnlp/JNLPFile.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/netx/net/sourceforge/jnlp/JNLPFile.java b/netx/net/sourceforge/jnlp/JNLPFile.java index 41354d3..6c458f8 100644 --- a/netx/net/sourceforge/jnlp/JNLPFile.java +++ b/netx/net/sourceforge/jnlp/JNLPFile.java @@ -91,7 +91,7 @@ public class JNLPFile { protected ResourcesDesc sharedResources = new ResourcesDesc(this, null, null, null); /** the application description */ - protected Object launchType; + protected LaunchDesc launchType; /** the component description */ protected ComponentDesc component; @@ -446,7 +446,7 @@ public class JNLPFile { * Returns an object of one of the following types: AppletDesc, * ApplicationDesc and InstallerDesc */ - public Object getLaunchInfo() { + public LaunchDesc getLaunchInfo() { return launchType; } |