/* * $Id$ * * Copyright (C) 2003-2015 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published * by the Free Software Foundation; either version 2.1 of the License, or * (at your option) any later version. * * This library is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public * License for more details. * * You should have received a copy of the GNU Lesser General Public License * along with this library; If not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ package org.jnode.configure.adapter; import java.io.IOException; import java.io.InputStream; import java.io.OutputStream; import java.util.Properties; /** * Property file adapter for Java source files. Loading is not supported, and * saving is done by template expansion only. * * @author crawley@jnode.org */ public class JavaSourceFileAdapter extends BasePropertyFileAdapter { private static BasePropertyFileAdapter.ValueCodec JAVA_VALUE_CODEC = new JavaStringLiteralCodec(); public JavaSourceFileAdapter() { super(JAVA_VALUE_CODEC, false, false); } @Override protected void loadFromFile(Properties props, InputStream input) throws IOException { throw new UnsupportedOperationException(); } @Override protected void saveToFile(Properties props, OutputStream output, String comment) throws IOException { throw new UnsupportedOperationException(); } }