Uses of Interface
org.eobjects.metamodel.util.Action

Packages that use Action
org.eobjects.metamodel Root package for MetaModel 
org.eobjects.metamodel.create API for creating tables 
org.eobjects.metamodel.data API for data sets 
org.eobjects.metamodel.delete API for deleting rows 
org.eobjects.metamodel.drop API for dropping tables 
org.eobjects.metamodel.insert API for inserting rows 
org.eobjects.metamodel.update API for updating rows 
org.eobjects.metamodel.util Utilities and convenient classes 
 

Uses of Action in org.eobjects.metamodel
 

Subinterfaces of Action in org.eobjects.metamodel
 interface UpdateScript
          Represents any updating operation or update script that can be executed on a UpdateableDataContext.
 

Uses of Action in org.eobjects.metamodel.create
 

Classes in org.eobjects.metamodel.create that implement Action
 class CreateTable
          Represents a single CREATE TABLE operation to be applied to a UpdateableDataContext.
 class CreateTableColumnBuilder
          Column builder for CreateTable.
 

Uses of Action in org.eobjects.metamodel.data
 

Constructors in org.eobjects.metamodel.data with parameters of type Action
RowPublisherDataSet(SelectItem[] selectItems, int maxRows, Action<RowPublisher> publishAction)
           
 

Uses of Action in org.eobjects.metamodel.delete
 

Classes in org.eobjects.metamodel.delete that implement Action
 class DeleteFrom
          Represents a single DELETE FROM operation to be applied to a UpdateableDataContext.
 

Uses of Action in org.eobjects.metamodel.drop
 

Classes in org.eobjects.metamodel.drop that implement Action
 class DropTable
          Represents a single DROP TABLE operation to be applied to a UpdateableDataContext.
 

Uses of Action in org.eobjects.metamodel.insert
 

Classes in org.eobjects.metamodel.insert that implement Action
 class InsertInto
          Represents a single INSERT INTO operation to be applied to a UpdateableDataContext.
 

Uses of Action in org.eobjects.metamodel.update
 

Classes in org.eobjects.metamodel.update that implement Action
 class Update
          Represents a single UPDATE operation to be applied to a UpdateableDataContext.
 

Uses of Action in org.eobjects.metamodel.util
 

Methods in org.eobjects.metamodel.util with parameters of type Action
 void UrlResource.append(Action<OutputStream> appendCallback)
           
 void Resource.append(Action<OutputStream> appendCallback)
          Opens up an InputStream to append (write at the end of the existing stream) to the resource.
 void InMemoryResource.append(Action<OutputStream> appendCallback)
           
 void FileResource.append(Action<OutputStream> appendCallback)
           
 void ClasspathResource.append(Action<OutputStream> appendCallback)
           
static
<E> void
CollectionUtils.forEach(E[] items, Action<? super E> action)
           
static
<E> void
CollectionUtils.forEach(Iterable<E> items, Action<? super E> action)
           
 void UrlResource.read(Action<InputStream> readCallback)
           
 void Resource.read(Action<InputStream> readCallback)
          Opens up an InputStream to read from the resource, and allows a callback to perform writing actions on it.
 void InMemoryResource.read(Action<InputStream> readCallback)
           
 void FileResource.read(Action<InputStream> readCallback)
           
 void ClasspathResource.read(Action<InputStream> readCallback)
           
 void LazyRef.requestLoad(Action<Throwable> errorAction)
          Requests an asynchronous load of the lazy reference.
 void UrlResource.write(Action<OutputStream> writeCallback)
           
 void Resource.write(Action<OutputStream> writeCallback)
          Opens up an OutputStream to write to the resource, and allows a callback to perform writing actions on it.
 void InMemoryResource.write(Action<OutputStream> writeCallback)
           
 void FileResource.write(Action<OutputStream> writeCallback)
           
 void ClasspathResource.write(Action<OutputStream> writeCallback)
           
 



Copyright © 2007-2013. All Rights Reserved.