Skip to main content
summaryrefslogtreecommitdiffstats
path: root/jaxb
diff options
context:
space:
mode:
authorBrian Vosburgh2016-01-20 22:40:30 +0000
committerBrian Vosburgh2017-05-18 22:35:46 +0000
commitb6ea4537412fa54d534e88698a340cb3c978a4d1 (patch)
tree82157a11e4107121c0b2969978b1fd99f2805244 /jaxb
parent6267a2d1aaefe3adbcc02ddac73f25c0853d9a6d (diff)
downloadwebtools.dali-b6ea4537412fa54d534e88698a340cb3c978a4d1.tar.gz
webtools.dali-b6ea4537412fa54d534e88698a340cb3c978a4d1.tar.xz
webtools.dali-b6ea4537412fa54d534e88698a340cb3c978a4d1.zip
make ValueModel methods public: hasListeners() and hasNoListeners()
Diffstat (limited to 'jaxb')
-rw-r--r--jaxb/plugins/org.eclipse.jpt.jaxb.ui/src/org/eclipse/jpt/jaxb/ui/internal/properties/JaxbSchemasPropertiesPage.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/jaxb/plugins/org.eclipse.jpt.jaxb.ui/src/org/eclipse/jpt/jaxb/ui/internal/properties/JaxbSchemasPropertiesPage.java b/jaxb/plugins/org.eclipse.jpt.jaxb.ui/src/org/eclipse/jpt/jaxb/ui/internal/properties/JaxbSchemasPropertiesPage.java
index 8992ee6aef..7b6f3b794d 100644
--- a/jaxb/plugins/org.eclipse.jpt.jaxb.ui/src/org/eclipse/jpt/jaxb/ui/internal/properties/JaxbSchemasPropertiesPage.java
+++ b/jaxb/plugins/org.eclipse.jpt.jaxb.ui/src/org/eclipse/jpt/jaxb/ui/internal/properties/JaxbSchemasPropertiesPage.java
@@ -1,5 +1,5 @@
/*******************************************************************************
- * Copyright (c) 2010, 2015 Oracle. All rights reserved.
+ * Copyright (c) 2010, 2016 Oracle. All rights reserved.
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License v1.0, which accompanies this distribution
* and is available at http://www.eclipse.org/legal/epl-v10.html.
@@ -541,7 +541,7 @@ public class JaxbSchemasPropertiesPage
}
@Override
- protected boolean hasListeners() {
+ public boolean hasListeners() {
return hasAnyCollectionChangeListeners(VALUES);
}

Back to the top