Follow Techotopia on Twitter

On-line Guides
All Guides
eBook Store
iOS / Android
Linux for Beginners
Office Productivity
Linux Installation
Linux Security
Linux Utilities
Linux Virtualization
Linux Kernel
System/Network Admin
Programming
Scripting Languages
Development Tools
Web Development
GUI Toolkits/Desktop
Databases
Mail Systems
openSolaris
Eclipse Documentation
Techotopia.com
Virtuatopia.com
Answertopia.com

How To Guides
Virtualization
General System Admin
Linux Security
Linux Filesystems
Web Servers
Graphics & Desktop
PC Hardware
Windows
Problem Solutions
Privacy Policy

  




 

 



org.eclipse.jst.server.core
Interface IUtilityModule


public interface IUtilityModule

A J2EE utility module that can be deployed to a server.

Provisional API: This class/interface is part of an interim API that is still under development and expected to change significantly before reaching stability. It is being made available at this early stage to solicit feedback from pioneering adopters on the understanding that any code that uses this API will almost certainly be broken (repeatedly) as the API evolves.


Method Summary
 IContainer[] getJavaOutputFolders ()
          Returns the root folders containing Java output in this module.
 IContainer[] getResourceFolders ()
          Returns the root folders for the resources in this module.
 boolean isBinary ()
          Returns true if this is a binary (zipped) module, and false if it is expanded.
 

Method Detail

getResourceFolders

IContainer[] getResourceFolders()
Returns the root folders for the resources in this module.

Returns:
a possibly-empty array of resource folders

getJavaOutputFolders

IContainer[] getJavaOutputFolders()
Returns the root folders containing Java output in this module.

Returns:
a possibly-empty array of Java output folders

isBinary

boolean isBinary()
Returns true if this is a binary (zipped) module, and false if it is expanded.

If true, members() should return only a single element - the binary (jar or zip file) that contains the contents of this module. (a single IModuleResource, e.g. myejb.jar) Also, getLocation() should return the full path up to and including the binary itself. (e.g. c:\temp\myejb.jar)

If false, members() should return the entire contents of the module, starting at the root. There should be no preceeding directory structure. (an array of IModuleResources, e.g. index.html, WEB-INF/web.xml, ...) In this case, getLocation() should return the path to the root folder containing these resources.

Returns:
boolean



 
 
  Published under the terms of the Eclipse Public License Version 1.0 ("EPL") Design by Interspire