Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 8cb774f4ef76d8ca1807ce0315b49bee49932ed1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package org.eclipse.cdt.internal.autotools.ui.properties;

import org.eclipse.cdt.ui.newui.AbstractPage;

public class AutotoolsGeneralPropertyPage extends AbstractPage {

	@Override
	protected boolean isSingle() {
		return false;
	}
	
	@Override
	protected boolean showsConfig() { return false;	}

}

Back to the top