source: rtems-eclipse-plug-in/org.rtems.cdt/src/org/rtems/cdt/VolatilePreferenceStore.java @ 6740c53

Last change on this file since 6740c53 was 6740c53, checked in by Sebastian Huber <sebastian.huber@…>, on 12/04/08 at 14:53:45

Initial commit.

  • Property mode set to 100644
File size: 985 bytes
Line 
1/*
2 * Copyright (c) 2008 Embedded Brains GmbH and others.
3 *
4 *   Embedded Brains GmbH
5 *   Obere Lagerstr. 30
6 *   D-82178 Puchheim
7 *   Germany
8 *   rtems@embedded-brains.de
9 *
10 * All rights reserved.  This program and the accompanying materials are made
11 * available under the terms of the Eclipse Public License Version 1.0 ("EPL")
12 * which accompanies this distribution and is available at
13 *
14 *   http://www.eclipse.org/legal/epl-v10.html
15 *
16 * For purposes of the EPL, "Program" will mean the Content.
17 *
18 * Contributors:
19 *
20 *   Sebastian Huber (Embedded Brains GmbH) - Initial API and implementation.
21 */
22
23package org.rtems.cdt;
24
25import java.io.OutputStream;
26import org.eclipse.jface.preference.IPreferenceStore;
27import org.eclipse.jface.preference.PreferenceStore;
28
29public class VolatilePreferenceStore extends PreferenceStore implements IPreferenceStore {
30        public void save() {
31                // Do nothing
32        }
33       
34        public void save( OutputStream out, String header) {
35                // Do nothing
36        }
37}
Note: See TracBrowser for help on using the repository browser.