Skip to main content
summaryrefslogtreecommitdiffstats
blob: 4d0c59629b05e7b1ebea15ae0c5704974a530cec (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package org.eclipse.jdt.core;

/*
 * (c) Copyright IBM Corp. 2000, 2001.
 * All Rights Reserved.
 */
 
/**
 * Represents a stand-alone instance or class (static) initializer in a type.
 * <p>
 * This interface is not intended to be implemented by clients.
 * </p>
 */
public interface IInitializer extends IMember {
}

Back to the top