Skip to main content
summaryrefslogtreecommitdiffstats
blob: 0fb02bb76d8bf0f99cdec46a2574fd7738bcc844 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
package org.eclipse.swt.internal.ole.win32;

/*
 * Licensed Materials - Property of IBM,
 * WebSphere Studio Workbench
 * (c) Copyright IBM Corp 2000
 */
public class IMoniker extends IPersist
{
public IMoniker(int address) {
	super(address);
}
}

Back to the top