org.netbeans.modules.bugtracking.spi.QueryController Maven / Gradle / Ivy
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
package org.netbeans.modules.bugtracking.spi;
import java.beans.PropertyChangeListener;
import javax.swing.JComponent;
import org.openide.util.HelpCtx;
/**
* Provides access to a Queries UI.
*
* Typically a Query UI should provide at least a query criteria
* editor available when creating new queries or modifying existing ones.
* In case it isn't possible to create or modify a query on the client it is
* possible to provide no QueryController and no UI at all - e.g. an immutable
* server defined query with no remote api to modify the criteria.
*
*
*
* When editing or creating a Query, the UI is presented in an
* TopComponent in the editor area. Fire PROP_CHANGED
to notify the Query
* TopComponent that the UI state changed, {@link #isChanged()} will be called
* accordingly to determine if the IDE-s general SaveAction should be enabled.
* On save or TopComponent close are then the saveChanges()
* and discardUnsavedChanges()
methods called accordingly.
*
*
*
* Please note, that the results of an query
* are always presented in the TaskDashboard, but eventually, in case the need appears,
* it is also possible for the bugtracking plugin implementation to provide a
* customized result view - e.g a table listing more attributes than then TasksDashboard does.
*
*
* @author Tomas Stupka
* @since 1.85
*/
public interface QueryController {
/**
* Fired when the data presented in the Query UI were changed by the user.
* @since 1.85
*/
public static String PROP_CHANGED = "bugtracking.query.changed";
/**
* The mode in which this controllers component is shown.
*
* @see #providesMode(org.netbeans.modules.bugtracking.spi.QueryController.QueryMode)
* @since 1.85
*/
public enum QueryMode {
/**
* Determines the Controller Component to create or edit a Query.
* @since 1.85
*/
EDIT,
/**
* Determines the Controller Component to view the Query results.
* @since 1.85
*/
VIEW
}
/**
* Determines if the Query provides an Editor or a Result view.
* Depending on the returned value the Query Open (view) and Edit actions will be
* enabled on a query node in the TasksDashboard.
*
* @param mode
* @return true
if the given mode is provided by the particular
* implementation, otherwise false
* @since 1.85
*/
public boolean providesMode(QueryMode mode);
/**
* Returns a visual Query component.
*
* @param mode
* @return a visual component representing a bugtracking query
* @since 1.85
*/
public JComponent getComponent(QueryMode mode);
/**
* Returns the help context associated with this controllers visual component
* @return help context
* @since 1.85
*/
public HelpCtx getHelpCtx();
/**
* Called when the component returned by this controller was opened.
* @since 1.85
*/
public void opened();
/**
* Called when the component returned by this controller was closed.
* @since 1.85
*/
public void closed();
/**
* This method is called when the general IDE Save button is pressed or when
* Save was chosen on close of an Query TopComponent.
*
* @param name in case the Query wasn't saved yet a new name is provided. Otherwise might be null.
* @return true
in case the save worked, otherwise false
* @since 1.85
*/
public boolean saveChanges(String name);
/**
* This method is called when Discard was chosen on close of an Query TopComponent.
*
* @return true
in case the discard worked, otherwise false
* @since 1.85
*/
public boolean discardUnsavedChanges();
/**
* Determines whether the state of the UI has changed and is supposed to be saved.
*
* @return true
in case there are changes to be saved, otherwise false
*/
public boolean isChanged();
/**
* Registers a PropertyChangeListener.
*
* @param l a PropertyChangeListener
* @since 1.85
*/
public void addPropertyChangeListener(PropertyChangeListener l);
/**
* Unregisters a PropertyChangeListener.
*
* @param l a PropertyChangeListener
* @since 1.85
*/
public void removePropertyChangeListener(PropertyChangeListener l);
}