Package org.eclipse.handly.model.impl
Interface IWorkingCopyInfo
-
public interface IWorkingCopyInfo
Groups objects related to a working copy. The relations described by this object do not change over the lifetime of the working copy.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description IBuffer
getBuffer()
Returns the buffer of the working copy.IContext
getContext()
Returns the context of the working copy.IReconcileStrategy
getReconcileStrategy()
Returns the reconcile strategy of the working copy.
-
-
-
Method Detail
-
getBuffer
IBuffer getBuffer()
Returns the buffer of the working copy. Does notaddRef
the buffer.- Returns:
- the buffer of the working copy (never
null
)
-
getContext
IContext getContext()
Returns the context of the working copy. The context, as a set of bindings, is immutable.- Returns:
- the context of the working copy (never
null
)
-
getReconcileStrategy
IReconcileStrategy getReconcileStrategy()
Returns the reconcile strategy of the working copy.- Returns:
- the reconcile strategy of the working copy (never
null
)
-
-