|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use View | |
---|---|
hudson.model | Core object model that are bound to URLs via stapler, rooted at Hudson. |
hudson.security | Security-related code. |
hudson.util | Other miscellaneous utility code |
hudson.views | |
jenkins.model | |
org.jvnet.hudson.test | Test harness for Jenkins and its plugins. |
Uses of View in hudson.model |
---|
Subclasses of View in hudson.model | |
---|---|
class |
AllView
View that contains everything. |
class |
ListView
Displays Job s in a flat list view. |
class |
MyView
View that only contains projects for which the current user has access to. |
class |
ProxyView
A view that delegates to another. |
class |
TreeView
EXPERIMENTAL |
Fields in hudson.model declared as View | |
---|---|
protected View |
ViewProperty.view
The view object that owns this property. |
Fields in hudson.model with type parameters of type View | |
---|---|
static DescriptorList<View> |
View.LIST
Deprecated. as of 1.286 Use all() for read access, and use Extension for registration. |
static AlternativeUiTextProvider.Message<View> |
View.NEW_PRONOUN
"Job" in "New Job". |
static Comparator<View> |
View.SORTER
|
Methods in hudson.model that return View | |
---|---|
static View |
View.create(org.kohsuke.stapler.StaplerRequest req,
org.kohsuke.stapler.StaplerResponse rsp,
ViewGroup owner)
|
static View |
View.createViewFromXML(String name,
InputStream xml)
|
View |
View.PropertyList.getOwner()
|
View |
View.getOwnerPrimaryView()
|
View |
ViewGroupMixIn.getPrimaryView()
Returns the primary View that renders the top-page of Hudson. |
View |
ViewGroup.getPrimaryView()
If the view group renders one view in its own URL (like Jenkins top page does), then that view is called the primary view. |
View |
TreeView.getPrimaryView()
|
View |
MyViewsProperty.getPrimaryView()
|
View |
ProxyView.getProxiedView()
|
View |
ViewGroupMixIn.getView(String name)
|
View |
ViewGroup.getView(String name)
Gets a view of the given name. |
View |
TreeView.getView(String name)
|
View |
MyViewsProperty.getView(String name)
|
Methods in hudson.model that return types with arguments of type View | |
---|---|
static DescriptorExtensionList<View,ViewDescriptor> |
View.all()
Returns all the registered ViewDescriptor s. |
Collection<View> |
ViewGroupMixIn.getViews()
Gets the read-only list of all View s. |
Collection<View> |
ViewGroup.getViews()
Gets all the views in this group. |
Collection<View> |
TreeView.getViews()
|
Collection<View> |
MyViewsProperty.getViews()
|
protected abstract List<View> |
ViewGroupMixIn.views()
Returns all the views. |
Methods in hudson.model with parameters of type View | |
---|---|
void |
ViewGroupMixIn.addView(View v)
|
void |
MyViewsProperty.addView(View view)
|
boolean |
ViewGroupMixIn.canDelete(View view)
|
boolean |
ViewGroup.canDelete(View view)
Determine whether a view may be deleted. |
boolean |
TreeView.canDelete(View view)
|
boolean |
MyViewsProperty.canDelete(View view)
|
static List<Action> |
TransientViewActionFactory.createAllFor(View v)
Creates Action)s for a view, using all registered {@link TransientViewActionFactory}s. |
abstract List<Action> |
TransientViewActionFactory.createFor(View v)
returns a list of (transient) actions never null, may be empty |
void |
ViewGroupMixIn.deleteView(View view)
|
void |
ViewGroup.deleteView(View view)
Deletes a view in this group. |
void |
TreeView.deleteView(View view)
|
void |
MyViewsProperty.deleteView(View view)
|
boolean |
ViewPropertyDescriptor.isEnabledFor(View view)
Whether or not the described property is enabled in the current context. |
ViewProperty |
ViewPropertyDescriptor.newInstance(View view)
Creates a default instance of ViewProperty to be associated
with View object that wasn't created from a persisted XML data. |
void |
ViewGroupMixIn.onViewRenamed(View view,
String oldName,
String newName)
|
void |
ViewGroup.onViewRenamed(View view,
String oldName,
String newName)
View calls this method when it's renamed. |
void |
TreeView.onViewRenamed(View view,
String oldName,
String newName)
|
void |
MyViewsProperty.onViewRenamed(View view,
String oldName,
String newName)
|
protected void |
AbstractCIBase.setViewOwner(View v)
|
Constructors in hudson.model with parameters of type View | |
---|---|
View.AsynchPeople(View parent)
|
|
View.People(View parent)
|
Constructor parameters in hudson.model with type arguments of type View | |
---|---|
ViewDescriptor(Class<? extends View> clazz)
|
Uses of View in hudson.security |
---|
Methods in hudson.security with parameters of type View | |
---|---|
ACL |
AuthorizationStrategy.getACL(View item)
Implementation can choose to provide different ACL for different views. |
Uses of View in hudson.util |
---|
Constructors in hudson.util with parameters of type View | |
---|---|
RunList(View view)
|
Uses of View in hudson.views |
---|
Methods in hudson.views with parameters of type View | |
---|---|
abstract List<TopLevelItem> |
ViewJobFilter.filter(List<TopLevelItem> added,
List<TopLevelItem> all,
View filteringView)
Choose which jobs to show for a view. |
Uses of View in jenkins.model |
---|
Methods in jenkins.model that return View | |
---|---|
View |
Jenkins.getPrimaryView()
Returns the primary View that renders the top-page of Hudson. |
View |
Jenkins.getStaplerFallback()
Fallback to the primary view. |
View |
Jenkins.getView(String name)
|
Methods in jenkins.model that return types with arguments of type View | |
---|---|
Collection<View> |
Jenkins.getViews()
Gets the read-only list of all View s. |
Methods in jenkins.model with parameters of type View | |
---|---|
void |
Jenkins.addView(View v)
|
boolean |
Jenkins.canDelete(View view)
|
void |
Jenkins.deleteView(View view)
|
void |
Jenkins.onViewRenamed(View view,
String oldName,
String newName)
|
void |
Jenkins.setPrimaryView(View v)
|
Uses of View in org.jvnet.hudson.test |
---|
Methods in org.jvnet.hudson.test with type parameters of type View | ||
---|---|---|
|
JenkinsRule.configRoundtrip(V view)
|
|
protected
|
HudsonTestCase.configRoundtrip(V view)
|
Methods in org.jvnet.hudson.test that return View | |
---|---|
View |
MockFolder.getPrimaryView()
|
View |
MockFolder.getView(String name)
|
Methods in org.jvnet.hudson.test that return types with arguments of type View | |
---|---|
Collection<View> |
MockFolder.getViews()
|
Methods in org.jvnet.hudson.test with parameters of type View | |
---|---|
void |
MockFolder.addView(View view)
|
boolean |
MockFolder.canDelete(View view)
|
void |
MockFolder.deleteView(View view)
|
com.gargoylesoftware.htmlunit.html.HtmlPage |
JenkinsRule.WebClient.getPage(View view)
|
com.gargoylesoftware.htmlunit.html.HtmlPage |
HudsonTestCase.WebClient.getPage(View view)
|
com.gargoylesoftware.htmlunit.html.HtmlPage |
JenkinsRule.WebClient.getPage(View view,
String relative)
|
com.gargoylesoftware.htmlunit.html.HtmlPage |
HudsonTestCase.WebClient.getPage(View view,
String relative)
|
void |
MockFolder.onViewRenamed(View view,
String oldName,
String newName)
|
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |