Skip to content

Commit

Permalink
Normalize getter Javadoc
Browse files Browse the repository at this point in the history
  • Loading branch information
garydgregory committed Oct 31, 2023
1 parent f9ef774 commit 861f73b
Show file tree
Hide file tree
Showing 10 changed files with 11 additions and 11 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -262,7 +262,7 @@ public Object getVariable(String name) {
}

/**
* Get a system property and handle security exceptions
* Gets a system property and handle security exceptions
* @param name the name of the property to retrieve
* @return the value of the property, or null if a SecurityException occurs
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ public static ClassLoader getClassLoader(ClassLoader specifiedLoader, Class call
}

/**
* Get the loader for the given class.
* Gets the loader for the given class.
* @param clazz the class to retrieve the loader for
* @return the class loader that loaded the provided class
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ public void doTag(XMLOutput output) throws JellyTagException {
}

/**
* Get the PreferencePageImpl
* Gets the PreferencePageImpl
* @return PreferencePageImpl
*/
public PreferencePageImpl getPreferencePageImpl() {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ public void doTag(XMLOutput output) throws JellyTagException {
}

/**
* Get the WizardPageImpl
* Gets the WizardPageImpl
* @return WizardPageImpl
*/
public WizardPageImpl getWizardPageImpl() {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@ protected void setBeanProperties(Object bean, Map attributes) throws JellyTagExc
}

/**
* Get a color for the control
* Gets a color for the control
* @param control
* @param colorValue
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ public void addThread(Thread thread) {
threads.add(thread);
}

/** Get the list of threads in this thread group */
/** Gets the list of threads in this thread group */
public List getThreads() {
return threads;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ public void waitUntilDone(long howLong) throws TimeoutException {
runningMutex.release();
}

/** Get the status of this thread */
/** Gets the status of this thread */
public RunnableStatus getStatus() {
return status;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -216,7 +216,7 @@ public void setNewContext(boolean newContext) {
}

/**
* Get the thread instance
* Gets the thread instance
* @return The thread
*/
public Thread getThread() {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ public void doTag(XMLOutput output) throws JellyTagException {
/** Implement this method to do something with the mutex */
protected abstract void useMutex(Object mutex, XMLOutput output) throws JellyTagException;

/** Get the mutex */
/** Gets the mutex */
public Object getMutex() {
return mutex;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ public void setThread(Thread thread) {
}

/**
* Get a reference to the thread to use
* Gets a reference to the thread to use
*/
public Thread getThread() {
return thread;
Expand All @@ -106,7 +106,7 @@ public void setThreadGroup(List threadGroup) {
}

/**
* Get the thread group
* Gets the thread group
*/
public List getThreadGroup() {
return threadGroup;
Expand Down

0 comments on commit 861f73b

Please sign in to comment.