mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-07-04 07:35:24 +02:00

Get rid of etools references. The tutorial still requires some work since it is hard to update from the code. All highlighting and anchor creation is done by hand, as are the differences from step to step.
43 lines
934 B
HTML
Executable file
43 lines
934 B
HTML
Executable file
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
|
|
<html>
|
|
|
|
<head>
|
|
<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=UTF-8">
|
|
<META HTTP-EQUIV="Content-Style-Type" CONTENT="text/css">
|
|
<LINK REL="STYLESHEET" HREF="../../book.css" TYPE="text/css">
|
|
<title>ShowJarContents Class After Creation</title>
|
|
</head>
|
|
|
|
<body bgcolor="#ffffff">
|
|
<h1>ShowJarContents Class After Creation</h1>
|
|
<p>
|
|
<pre><samp>
|
|
package samples.ui.actions;
|
|
|
|
import org.eclipse.rse.files.ui.actions.SystemAbstractRemoteFilePopupMenuExtensionAction;
|
|
|
|
public class <b>ShowJarContents</b>
|
|
extends SystemAbstractRemoteFilePopupMenuExtensionAction
|
|
{
|
|
|
|
/**
|
|
* Constructor for ShowJarContents.
|
|
*/
|
|
public <b>ShowJarContents</b>()
|
|
{
|
|
super();
|
|
}
|
|
|
|
/**
|
|
* @see org.eclipse.rse.ui.actions.SystemAbstractPopupMenuExtensionAction#run()
|
|
*/
|
|
public void <b>run</b>()
|
|
{
|
|
}
|
|
|
|
}
|
|
|
|
</samp></pre>
|
|
</p>
|
|
</body>
|
|
</html>
|