01: /*******************************************************************************
02: * Copyright (c) 2004, 2006 IBM Corporation and others.
03: * All rights reserved. This program and the accompanying materials
04: * are made available under the terms of the Eclipse Public License v1.0
05: * which accompanies this distribution, and is available at
06: * http://www.eclipse.org/legal/epl-v10.html
07: *
08: * Contributors:
09: * IBM Corporation - initial API and implementation
10: *******************************************************************************/package org.eclipse.ui.about;
11:
12: import java.io.PrintWriter;
13:
14: /**
15: * Extensions to <code>org.eclipse.ui.systemSummaryExtensions</code> must provide
16: * an implementation of this interface. The class must provide a default
17: * constructor. A new instance of the class will be created each time the system
18: * summyary is created.
19: *
20: * @since 3.0
21: */
22: public interface ISystemSummarySection {
23: /**
24: * A method that puts the section's information into the system summary's
25: * configuration details log.
26: * @param writer puts information into the system summary
27: */
28: public void write(PrintWriter writer);
29: }
|