Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Javadoc format fixes (part 2) #362

Merged
merged 1 commit into from
Dec 7, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*******************************************************************************
* Copyright (c) 2000, 2015 IBM Corporation and others.
* Copyright (c) 2000, 2023 IBM Corporation and others.
*
* This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
Expand Down Expand Up @@ -54,11 +54,12 @@
import org.eclipse.ui.PlatformUI;

/**
* This tab appears for java applet launch configurations and allows the user to edit
* applet-specific attributes such as width, height, name & applet parameters.
* This tab appears for java applet launch configurations and allows the user to edit applet-specific attributes such as width, height, name &
* applet parameters.
* <p>
* This class may be instantiated.
* </p>
*
* @since 2.1
* @noextend This class is not intended to be sub-classed by clients.
*/
Expand All @@ -73,17 +74,11 @@ public class AppletParametersTab extends JavaLaunchTab {

private class AppletTabListener extends SelectionAdapter implements ModifyListener {

/* (non-Javadoc)
* @see org.eclipse.swt.events.ModifyListener#modifyText(org.eclipse.swt.events.ModifyEvent)
*/
@Override
public void modifyText(ModifyEvent e) {
updateLaunchConfigurationDialog();
}

/* (non-Javadoc)
* @see org.eclipse.swt.events.SelectionListener#widgetSelected(org.eclipse.swt.events.SelectionEvent)
*/
@Override
public void widgetSelected(SelectionEvent e) {
Object source= e.getSource();
Expand Down Expand Up @@ -119,9 +114,6 @@ public void widgetSelected(SelectionEvent e) {
*/
private TableViewer fViewer;

/**
* @see org.eclipse.debug.ui.ILaunchConfigurationTab#createControl(Composite)
*/
@Override
public void createControl(Composite parent) {
Composite comp = SWTFactory.createComposite(parent, 1, 1, GridData.FILL_HORIZONTAL);
Expand Down Expand Up @@ -248,9 +240,6 @@ public void removeListener(ILabelProviderListener listener) {
}


/**
* @see org.eclipse.debug.ui.ILaunchConfigurationTab#isValid(ILaunchConfiguration)
*/
@Override
public boolean isValid(ILaunchConfiguration launchConfig) {
setErrorMessage(null);
Expand Down Expand Up @@ -349,9 +338,6 @@ private Map<String, String> getViewerInput() {
return (Map<String, String>) fViewer.getInput();
}

/**
* @see org.eclipse.debug.ui.ILaunchConfigurationTab#performApply(ILaunchConfigurationWorkingCopy)
*/
@Override
public void performApply(ILaunchConfigurationWorkingCopy configuration) {
try {
Expand Down Expand Up @@ -382,17 +368,11 @@ private String getHeightText() {
return fHeightText.getText().trim();
}

/**
* @see org.eclipse.debug.ui.ILaunchConfigurationTab#setDefaults(ILaunchConfigurationWorkingCopy)
*/
@Override
public void setDefaults(ILaunchConfigurationWorkingCopy configuration) {
}


/**
* @see org.eclipse.debug.ui.ILaunchConfigurationTab#initializeFrom(ILaunchConfiguration)
*/
@Override
public void initializeFrom(ILaunchConfiguration config) {
try {
Expand Down Expand Up @@ -423,9 +403,6 @@ public void initializeFrom(ILaunchConfiguration config) {
fViewer.setInput(input);
}

/**
* @see org.eclipse.debug.ui.ILaunchConfigurationTab#getName()
*/
@Override
public String getName() {
return LauncherMessages.appletlauncher_argumenttab_name;
Expand All @@ -441,25 +418,16 @@ public String getId() {
return "org.eclipse.jdt.debug.ui.appletParametersTab"; //$NON-NLS-1$
}

/**
* @see org.eclipse.debug.ui.ILaunchConfigurationTab#getImage()
*/
@Override
public Image getImage() {
return JavaDebugImages.get(JavaDebugImages.IMG_VIEW_ARGUMENTS_TAB);
}

/* (non-Javadoc)
* @see org.eclipse.debug.ui.ILaunchConfigurationTab#activated(org.eclipse.debug.core.ILaunchConfigurationWorkingCopy)
*/
@Override
public void activated(ILaunchConfigurationWorkingCopy workingCopy) {
// do nothing when activated
}

/* (non-Javadoc)
* @see org.eclipse.debug.ui.ILaunchConfigurationTab#deactivated(org.eclipse.debug.core.ILaunchConfigurationWorkingCopy)
*/
@Override
public void deactivated(ILaunchConfigurationWorkingCopy workingCopy) {
// do nothing when de-activated
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,11 +36,11 @@ public interface ThreadReference {
* <li>If yes, the VM checks to see whether there might be a <code>finally</code> or <code>synchronized</code> block enclosing the current
* instruction.
* <ul>
* <li>If there is no enclosing <code>finally</code> block, the operation reduces to the above case.
* <li>If there is no enclosing <code>finally</code> block, the operation reduces to the above case.ll
* <li>If there is an enclosing <code>finally</code> block, the VM creates a VM exception and activates the <code>finally</code> block with it. If
* this exception eventually causes the stack frame to be popped, the exception is caught by the VM itself, the return value is returned, and
* execution continues back in the caller.
* <ul>
* </ul>
* </ul>
* <br/>
* Note that a <code>finally</code> block manifests itself as (and is indistinguishable from) a <code>catch Throwable</code> block.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,7 @@ public interface VirtualMachine {
* <li>send a class unload event,
* <li>suspend the VM if it was requested by the class unload event request.
* </ul>
* </ul>
* </ol>
* <p>
* Subsequent references to classes will work with the new class definition. Note the existing <code>com.sun.jdi.ReferenceType</code>,
Expand Down
Loading