hudson.model.ViewGroup Java Examples

The following examples show how to use hudson.model.ViewGroup. You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: DashboardView.java    From jenkins-deployment-dashboard-plugin with MIT License 4 votes vote down vote up
public DashboardView(final String name, final ViewGroup owner) {
    super(name, owner);
}
 
Example #2
Source File: BranchListView.java    From multi-branch-project-plugin with MIT License 2 votes vote down vote up
/**
 * Constructor used to instantiate new views with an owner.
 *
 * @param name  Name of view
 * @param owner Owner of view
 */
@SuppressWarnings(UNUSED)
public BranchListView(String name, ViewGroup owner) {
    super(name, owner);
}