congrats Icon
New! Tabnine Pro 14-day free trial
Start a free trial
Tabnine Logo
EJBArtifactEdit.getEJBClientJarModule
Code IndexAdd Tabnine to your IDE (free)

How to use
getEJBClientJarModule
method
in
org.eclipse.jst.j2ee.ejb.componentcore.util.EJBArtifactEdit

Best Java code snippets using org.eclipse.jst.j2ee.ejb.componentcore.util.EJBArtifactEdit.getEJBClientJarModule (Showing top 3 results out of 315)

  • Add the Codota plugin to your IDE and get smart completions
private void myMethod () {
List l =
  • Codota Iconnew ArrayList()
  • Codota Iconnew LinkedList()
  • Smart code suggestions by Tabnine
}
origin: org.eclipse/org.eclipse.jst.j2ee.ejb

/**
 * <p>
 * Checks is a EJB Client Jar exists for the ejb module project
 * </p>
 * 
 * @return boolean
 * 
 */
public boolean hasEJBClientJARProject() {
  verifyOperationSupported();
  if (getEJBClientJarModule() != null)
    return true;
  return false;
}
origin: org.eclipse/org.eclipse.jst.j2ee.ui

/**
 * @param project
 * @param localProjects
 */
private void addEJBClientProjectIfNecessary(IProject project, List localProjects) {
  IVirtualComponent comp = ComponentCore.createComponent(project);
  EJBArtifactEdit edit = EJBArtifactEdit.getEJBArtifactEditForRead(comp);
  if (edit != null && edit.hasEJBClientJARProject())
    localProjects.add(edit.getEJBClientJarModule().getProject());
}
origin: org.eclipse/org.eclipse.jst.j2ee.ejb

public IProject getDefinedEJBClientJARProject(IProject anEJBProject) {
  IVirtualComponent comp = ComponentCore.createComponent(anEJBProject);
  EJBArtifactEdit edit = null;
  IVirtualComponent clientComp = null;
  try {
    edit = EJBArtifactEdit.getEJBArtifactEditForRead(comp);
    clientComp = edit.getEJBClientJarModule();
  } finally {
    if (edit != null)
      edit.dispose();
  }
  if (clientComp == null)
    return null;
  return clientComp.getProject();
}
org.eclipse.jst.j2ee.ejb.componentcore.utilEJBArtifactEditgetEJBClientJarModule

Popular methods of EJBArtifactEdit

  • dispose
  • getEJBArtifactEditForRead
    Returns an instance facade to manage the underlying edit model for the given WorkbenchComponent. In
  • getEJBArtifactEditForWrite
    Returns an instance facade to manage the underlying edit model for the given WorkbenchComponent. In
  • getEJBJar
  • getEJBJarXmiResource
  • getJ2EEVersion
    Retrieves J2EE version information from EJBResource.
  • hasEJBClientJARProject
    Checks is a EJB Client Jar exists for the ejb module project
  • <init>
  • addEJBJarIfNecessary
    Creates a deployment descriptor root object (EJBJar) and populates with data. Adds the root object
  • createDeploymentDescriptor
  • createModelRoot
  • getArtifactEditModel
  • createModelRoot,
  • getArtifactEditModel,
  • getBinaryComponentHelper,
  • getComponent,
  • getDeploymentDescriptorFolder,
  • getDeploymentDescriptorResource,
  • getDeploymentDescriptorRoot,
  • getProject,
  • getWritableEdit

Popular in Java

  • Reactive rest calls using spring rest template
  • scheduleAtFixedRate (ScheduledExecutorService)
  • compareTo (BigDecimal)
  • getApplicationContext (Context)
  • InputStreamReader (java.io)
    A class for turning a byte stream into a character stream. Data read from the source input stream is
  • ResourceBundle (java.util)
    ResourceBundle is an abstract class which is the superclass of classes which provide Locale-specifi
  • Stack (java.util)
    Stack is a Last-In/First-Out(LIFO) data structure which represents a stack of objects. It enables u
  • TimeZone (java.util)
    TimeZone represents a time zone offset, and also figures out daylight savings. Typically, you get a
  • Reference (javax.naming)
  • IsNull (org.hamcrest.core)
    Is the value null?
  • Top 12 Jupyter Notebook Extensions
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimAtomGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyStudentsTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now