Tabnine Logo
CompositeMetadataRepository.getChildren
Code IndexAdd Tabnine to your IDE (free)

How to use
getChildren
method
in
org.eclipse.equinox.internal.p2.metadata.repository.CompositeMetadataRepository

Best Java code snippets using org.eclipse.equinox.internal.p2.metadata.repository.CompositeMetadataRepository.getChildren (Showing top 9 results out of 315)

origin: at.bestsolution.efxclipse.eclipse/org.eclipse.equinox.p2.metadata.repository

@Override
public String toString() {
  return getChildren().toString();
}
origin: ifedorenko/p2-browser

protected Object[] getImmediateChildrenRepositories( final CompositeMetadataRepository repository )
{
  List<Object> result = new ArrayList<Object>();
  for ( URI childUri : repository.getChildren() )
  {
    IMetadataRepository child = allrepositories.get( childUri );
    if ( child != null )
    {
      result.add( child );
    }
    else
    {
      result.add( "Missing " + childUri );
    }
  }
  return result.toArray();
}
origin: ifedorenko/p2-browser

for ( URI childUri : ( (CompositeMetadataRepository) repository ).getChildren() )
origin: org.eclipse.platform/org.eclipse.equinox.p2.publisher

for (int i = 0; i < contextMetadataRepositories.length; i++)
  contextMetadata.addChild(contextMetadataRepositories[i]);
if (contextMetadata.getChildren().size() > 0)
  publisherInfo.setContextMetadataRepository(contextMetadata);
origin: at.bestsolution.efxclipse.eclipse/org.eclipse.equinox.p2.publisher

for (int i = 0; i < contextMetadataRepositories.length; i++)
  contextMetadata.addChild(contextMetadataRepositories[i]);
if (contextMetadata.getChildren().size() > 0)
  publisherInfo.setContextMetadataRepository(contextMetadata);
origin: com.github.veithen.cosmos.bootstrap/org.eclipse.equinox.p2.publisher

for (int i = 0; i < contextMetadataRepositories.length; i++)
  contextMetadata.addChild(contextMetadataRepositories[i]);
if (contextMetadata.getChildren().size() > 0)
  publisherInfo.setContextMetadataRepository(contextMetadata);
origin: ifedorenko/p2-browser

for ( URI childUri : ( (CompositeMetadataRepository) repository ).getChildren() )
origin: org.eclipse.equinox.p2/publisher

for (int i = 0; i < contextMetadataRepositories.length; i++)
  contextMetadata.addChild(contextMetadataRepositories[i]);
if (contextMetadata.getChildren().size() > 0)
  publisherInfo.setContextMetadataRepository(contextMetadata);
origin: com.github.pms1.tppt/tppt-mirror-application

context2.setMetadataRepositories(sourceMetadataRepo.getChildren().toArray(new URI[0]));
org.eclipse.equinox.internal.p2.metadata.repositoryCompositeMetadataRepositorygetChildren

Popular methods of CompositeMetadataRepository

  • addChild
  • createMemoryComposite
    Create a Composite repository in memory.
  • <init>
  • getActualLocation
  • getActualLocationURI
  • getDescription
  • getLocation
  • getManager
  • getName
  • getProperties
  • getProperty
  • getProvider
  • getProperty,
  • getProvider,
  • getType,
  • getVersion,
  • isLocal,
  • isModifiable,
  • removeFromRepoManager,
  • save,
  • setDescription

Popular in Java

  • Parsing JSON documents to java classes using gson
  • requestLocationUpdates (LocationManager)
  • setContentView (Activity)
  • getSharedPreferences (Context)
  • System (java.lang)
    Provides access to system-related information and resources including standard input and output. Ena
  • NoSuchElementException (java.util)
    Thrown when trying to retrieve an element past the end of an Enumeration or Iterator.
  • UUID (java.util)
    UUID is an immutable representation of a 128-bit universally unique identifier (UUID). There are mul
  • Manifest (java.util.jar)
    The Manifest class is used to obtain attribute information for a JarFile and its entries.
  • Pattern (java.util.regex)
    Patterns are compiled regular expressions. In many cases, convenience methods such as String#matches
  • Filter (javax.servlet)
    A filter is an object that performs filtering tasks on either the request to a resource (a servlet o
  • Top Sublime Text plugins
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

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