mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-07-05 16:15:25 +02:00
45 lines
1.1 KiB
HTML
Executable file
45 lines
1.1 KiB
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>
|
|
<pre><samp>
|
|
package samples.ui.actions;
|
|
|
|
import org.eclipse.jface.action.IAction;
|
|
import org.eclipse.jface.viewers.ISelection;
|
|
import org.eclipse.ui.IObjectActionDelegate;
|
|
import org.eclipse.ui.IWorkbenchPart;
|
|
|
|
public class ShowJarContents implements IObjectActionDelegate {
|
|
|
|
public ShowJarContents() {
|
|
// TODO Auto-generated constructor stub
|
|
}
|
|
|
|
public void setActivePart(IAction action, IWorkbenchPart targetPart) {
|
|
// TODO Auto-generated method stub
|
|
|
|
}
|
|
|
|
public void run(IAction action) {
|
|
// TODO Auto-generated method stub
|
|
|
|
}
|
|
|
|
public void selectionChanged(IAction action, ISelection selection) {
|
|
// TODO Auto-generated method stub
|
|
|
|
}
|
|
|
|
}
|
|
</samp></pre>
|
|
</body>
|
|
</html>
|