Skip to content

Commit

Permalink
Rename class
Browse files Browse the repository at this point in the history
  • Loading branch information
prasser committed Jun 16, 2017
1 parent a27d7f9 commit 0f02579
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ public LayoutUtilityStatistics(final Composite parent,
this.registerView(new ViewPropertiesOutput(folder.createItem(TAB_PROPERTIES, null, true), controller), "help.utility.outputproperties"); //$NON-NLS-1$
}
if (target == ModelPart.INPUT) {
this.registerView(new ViewClassificationAttributes(folder.createItem(TAB_CLASSIFICATION_ANALYSIS, null, false), controller), "help.utility.accuracy"); //$NON-NLS-1$
this.registerView(new ViewStatisticsClassificationAttributes(folder.createItem(TAB_CLASSIFICATION_ANALYSIS, null, false), controller), "help.utility.accuracy"); //$NON-NLS-1$
} else {
this.registerView(new ViewLocalRecoding(folder.createItem(TAB_LOCAL_RECODING, null, false), controller), "help.utility.localrecoding"); //$NON-NLS-1$
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@
*
* @author Fabian Prasser
*/
public class ViewClassificationAttributes implements IView, ViewStatisticsBasic {
public class ViewStatisticsClassificationAttributes implements IView, ViewStatisticsBasic {

/**
* Internal state management
Expand Down Expand Up @@ -142,7 +142,7 @@ public int hashCode() {
* @param parent
* @param controller
*/
public ViewClassificationAttributes(final Composite parent,
public ViewStatisticsClassificationAttributes(final Composite parent,
final Controller controller) {

controller.addListener(ModelPart.INPUT, this);
Expand Down Expand Up @@ -262,7 +262,7 @@ private void fireEvent() {
modified = true;
}
if (modified) {
controller.update(new ModelEvent(ViewClassificationAttributes.this, ModelPart.SELECTED_FEATURES_OR_CLASSES, null));
controller.update(new ModelEvent(ViewStatisticsClassificationAttributes.this, ModelPart.SELECTED_FEATURES_OR_CLASSES, null));
}
}
}
Expand Down

0 comments on commit 0f02579

Please sign in to comment.