The java `org.eclipse.core.resources.IContainer.members` method is used in the Eclipse platform to retrieve an array of members contained within a specified container. A container, in this context, refers to a resource that can contain other resources, such as a project or a folder. The `members` method returns an array of `IResource` objects, representing the members of the container. These members can be files, folders, or other resources. This method is useful for accessing and manipulating the resources within a container programmatically.
Java IContainer.members - 30 examples found. These are the top rated real world Java examples of org.eclipse.core.resources.IContainer.members extracted from open source projects. You can rate examples to help us improve the quality of examples.