Skip to content

Commit 2243a6f

Browse files
committed
Clearing @SInCE tags for 2.0
1 parent 4e6c224 commit 2243a6f

File tree

47 files changed

+1
-152
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

47 files changed

+1
-152
lines changed

visualvm/application/src/org/graalvm/visualvm/application/ApplicationDescriptor.java

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -71,8 +71,6 @@ protected ApplicationDescriptor(Application application) {
7171
*
7272
* @param application Application described by the descriptor
7373
* @param preferredPosition preferred position of the Application
74-
*
75-
* @since VisualVM 1.3
7674
*/
7775
protected ApplicationDescriptor(Application application, int preferredPosition) {
7876
this(application, ApplicationTypeFactory.getApplicationTypeFor(application),
@@ -150,8 +148,6 @@ public void propertyChange(PropertyChangeEvent evt) {
150148
* @param application Application for which to resolve the name
151149
* @param type ApplicationType to be used for generating Application name
152150
* @return persisted Application name if available or new generated name
153-
*
154-
* @since VisualVM 1.3
155151
*/
156152
protected static String resolveApplicationName(Application application, ApplicationType type) {
157153
// Check for persisted displayname (currently only for JmxApplications)

visualvm/application/src/org/graalvm/visualvm/application/jvm/Jvm.java

Lines changed: 1 addition & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -77,8 +77,6 @@ public abstract class Jvm extends Model {
7777
/**
7878
* Tests if target JVM is JRE 1.8.
7979
* @return <CODE>true</CODE> if JVM is JRE 1.8, <CODE>false</CODE> otherwise
80-
*
81-
* @since VisualVM 1.3.4
8280
*/
8381
public boolean is18() {
8482
// default implementation for backward compatibility
@@ -88,8 +86,6 @@ public boolean is18() {
8886
/**
8987
* Tests if target JVM is JRE 1.9.
9088
* @return <CODE>true</CODE> if JVM is JRE 1.9, <CODE>false</CODE> otherwise
91-
*
92-
* @since VisualVM 1.3.8
9389
*/
9490
public boolean is19() {
9591
// default implementation for backward compatibility
@@ -99,8 +95,6 @@ public boolean is19() {
9995
/**
10096
* Tests if target JVM is JRE 10.
10197
* @return <CODE>true</CODE> if JVM is JRE 10, <CODE>false</CODE> otherwise
102-
*
103-
* @since VisualVM 1.4.1
10498
*/
10599
public boolean is100() {
106100
// default implementation for backward compatibility
@@ -109,9 +103,7 @@ public boolean is100() {
109103

110104
/**
111105
* Tests if target JVM is JRE 11.
112-
* @return <CODE>true</CODE> if JVM is JRE 11, <CODE>false</CODE> otherwise
113-
*
114-
* @since VisualVM 1.4.2
106+
* @return <CODE>true</CODE> if JVM is JRE 11, <CODE>false</CODE>
115107
*/
116108
public boolean is110() {
117109
// default implementation for backward compatibility
@@ -175,7 +167,6 @@ public boolean is110() {
175167
/**
176168
* Returns the Java version for the target Java application.
177169
* @return Returns the Java version of the target Java application
178-
* @since 1.3.1
179170
*/
180171
public abstract String getJavaVersion();
181172

@@ -280,8 +271,6 @@ public boolean is110() {
280271
*
281272
* @return Index 0 is the display name for heap,
282273
* index 1 is display name for Permanent Generation (PermGen)
283-
*
284-
* @since VisualVM 1.3.6
285274
*/
286275
public abstract String[] getGenName();
287276

@@ -347,7 +336,6 @@ public boolean is110() {
347336

348337
/**
349338
* Takes heap histogram of target Application.
350-
* @since VisualVM 1.3.7
351339
* @return Returns {@link HeapHistogram} of the heap from target Application.
352340
*/
353341
public HeapHistogram takeHeapHistogram() {
@@ -365,7 +353,6 @@ public HeapHistogram takeHeapHistogram() {
365353
*
366354
* @return the maximum number of processors available to the virtual
367355
* machine; never smaller than one
368-
* @since VisualVM 2.0
369356
*/
370357
public int getAvailableProcessors() {
371358
// default implementation
@@ -376,7 +363,6 @@ public int getAvailableProcessors() {
376363
* provides access to current values of monitored data in instance of {@link MonitoredData}.
377364
* The methods may return <CODE>null</CODE> if the {@link MonitoredData} are not available
378365
* or are not supported by particular {@link Jvm} instance.
379-
* @since VisualVM 1.2
380366
* @return instance of {@link MonitoredData} with current values of monitored data or
381367
* <CODE>null</CODE> if the monitored data cannot be retrieved.
382368
*/

visualvm/application/src/org/graalvm/visualvm/application/type/ApplicationType.java

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,8 +49,6 @@ public abstract class ApplicationType extends Model {
4949
* Named property for suggested name of the application type. This name will
5050
* eventually be used instead of "Local Application" or "Remote Application"
5151
* in case the application type is not recognized.
52-
*
53-
* @since VisualVM 1.3.4
5452
*/
5553
public static final String PROPERTY_SUGGESTED_NAME = "prop_suggested_name"; // NOI18N
5654
public static final String PROPERTY_DESCRIPTION = "description"; // NOI18N

visualvm/application/src/org/graalvm/visualvm/application/type/EclipseApplicationType.java

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,6 @@
3131
/**
3232
* This {@link ApplicationType} represents Eclipse application.
3333
* @author Tomas Hurka
34-
*
35-
* @since VisualVM 1.3.4
3634
*/
3735
public class EclipseApplicationType extends MainClassApplicationType {
3836

visualvm/application/src/org/graalvm/visualvm/application/type/EclipseApplicationTypeFactory.java

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,6 @@
3232
/**
3333
* Factory which recognizes Eclipse application.
3434
* @author Tomas Hurka
35-
*
36-
* @since VisualVM 1.3.4
3735
*/
3836
public class EclipseApplicationTypeFactory extends MainClassApplicationTypeFactory {
3937

visualvm/application/src/org/graalvm/visualvm/application/type/IntellijApplicationType.java

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,6 @@
3131
/**
3232
* This {@link ApplicationType} represents IntelliJ Platform application.
3333
* @author Tomas Hurka
34-
*
35-
* @since VisualVM 1.3.4
3634
*/
3735
public class IntellijApplicationType extends MainClassApplicationType {
3836

visualvm/application/src/org/graalvm/visualvm/application/type/IntellijApplicationTypeFactory.java

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,6 @@
3232
/**
3333
* Factory which recognizes application based IntelliJ Platform.
3434
* @author Tomas Hurka
35-
*
36-
* @since VisualVM 1.3.4
3735
*/
3836
public class IntellijApplicationTypeFactory extends MainClassApplicationTypeFactory {
3937

visualvm/charts/src/org/graalvm/visualvm/charts/SimpleXYChartSupport.java

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -175,8 +175,6 @@ public void updateDetails(final String[] details) {
175175
* <br><br><b>Note:</b> This method can be called from any thread.
176176
*
177177
* @param visible new visibility of the legend section of the chart
178-
*
179-
* @since VisualVM 1.3.4
180178
*/
181179
public void setLegendVisible(final boolean visible) {
182180
Runnable visibilityUpdater = new Runnable() {
@@ -196,8 +194,6 @@ public void run() {
196194
* <br><br><b>Note:</b> This method must be called in the Event Dispatch Thread.
197195
*
198196
* @return true if legend section of the chart is visible, false otherwise
199-
*
200-
* @since VisualVM 1.3.4
201197
*/
202198
public boolean isLegendVisible() {
203199
return legendVisible;
@@ -211,8 +207,6 @@ public boolean isLegendVisible() {
211207
* in incorrect appearance once the data buffer starts dropping oldest values.
212208
*
213209
* @param zooming true if zooming is enabled, false otherwise
214-
*
215-
* @since VisualVM 1.3.8
216210
*/
217211
public void setZoomingEnabled(final boolean zooming) {
218212
Runnable visibilityUpdater = new Runnable() {
@@ -232,8 +226,6 @@ public void run() {
232226
* <br><br><b>Note:</b> This method must be called in the Event Dispatch Thread.
233227
*
234228
* @return true if charts zooming is enabled, false otherwise
235-
*
236-
* @since VisualVM 1.3.8
237229
*/
238230
public boolean isZoomingEnabled() {
239231
return zoomingEnabled;

visualvm/core/src/org/graalvm/visualvm/core/datasource/Storage.java

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -79,8 +79,6 @@ public final class Storage {
7979
/**
8080
* Creates new instance of Storage for storing temporary data. The Storage
8181
* directory is initialized by getTemporaryStorageDirectory() value.
82-
*
83-
* @since VisualVM 1.2
8482
*/
8583
public Storage() {
8684
this(new File(getTemporaryStorageDirectoryString())); // Do not create immediately
@@ -183,7 +181,6 @@ public synchronized void setCustomProperties(String[] keys, String[] values) {
183181
* Clears custom property.
184182
*
185183
* @param key property name
186-
* @since VisualVM 1.2
187184
*/
188185
public void clearCustomProperty(String key) {
189186
clearCustomProperties(new String[] { key });
@@ -193,7 +190,6 @@ public void clearCustomProperty(String key) {
193190
* Clears custom properties.
194191
*
195192
* @param keys property names
196-
* @since VisualVM 1.2
197193
*/
198194
public synchronized void clearCustomProperties(String[] keys) {
199195
Properties prop = getCustomProperties(false);
@@ -207,7 +203,6 @@ public synchronized void clearCustomProperties(String[] keys) {
207203
* Returns true if the Storage contains any custom properties, false otherwise.
208204
*
209205
* @return true if the Storage contains any custom properties, false otherwise
210-
* @since VisualVM 1.2
211206
*/
212207
public synchronized boolean hasCustomProperties() {
213208
Properties prop = getCustomProperties(false);

visualvm/core/src/org/graalvm/visualvm/core/datasource/descriptor/DataSourceDescriptor.java

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -185,8 +185,6 @@ public String getName() {
185185
*
186186
* @param namePattern name of the DataSource to be processed (formatted)
187187
* @return processed (formatted) name of the DataSource.
188-
*
189-
* @since VisualVM 1.4.3
190188
*/
191189
protected String formatName(String namePattern) {
192190
return namePattern;
@@ -216,8 +214,6 @@ public int getPreferredPosition() {
216214
* Default implementation returns null.
217215
*
218216
* @return comparator used to sort nested DataSources or null
219-
*
220-
* @since VisualVM 1.3
221217
*/
222218
public Comparator<DataSource> getChildrenComparator() {
223219
return childrenComparator;
@@ -238,8 +234,6 @@ public int getAutoExpansionPolicy() {
238234
*
239235
* @return true if the General properties section should be available for
240236
* the DataSource, false otherwise
241-
*
242-
* @since VisualVM 1.2
243237
*/
244238
public boolean providesProperties() {
245239
return false;
@@ -338,8 +332,6 @@ protected void setPreferredPosition(int newPosition) {
338332
* Use setChildrenComparator(null) to restore the default sorting.
339333
*
340334
* @param newComparator comparator for sorting DataSources within a DataSource
341-
*
342-
* @since VisualVM 1.3
343335
*/
344336
protected void setChildrenComparator(Comparator<DataSource> newComparator) {
345337
Comparator<DataSource> oldComparator = childrenComparator;
@@ -365,8 +357,6 @@ protected final PropertyChangeSupport getChangeSupport() {
365357
* @param dataSource DataSource for which to resolve the name
366358
* @param name name to be used if not available in DataSource Storage
367359
* @return persisted DataSource name if available or the provided name
368-
*
369-
* @since VisualVM 1.3
370360
*/
371361
protected static String resolveName(DataSource dataSource, String name) {
372362
String persistedName = dataSource.getStorage().getCustomProperty(PROPERTY_NAME);
@@ -385,8 +375,6 @@ protected static String resolveName(DataSource dataSource, String name) {
385375
* @param position position to be used if not available in DataSource Storage
386376
* @param savePosition true when the position should be saved to DataSource's Storage
387377
* @return persisted DataSource position if available or the provided position
388-
*
389-
* @since VisualVM 1.3
390378
*/
391379
protected static int resolvePosition(DataSource dataSource, int position,
392380
boolean savePosition) {

0 commit comments

Comments
 (0)