001 /* * ============================================================================
002 * GNU Lesser General Public License
003 * ============================================================================
004 *
005 * Beanlet - JSE Application Container.
006 * Copyright (C) 2006 Leon van Zantvoort
007 *
008 * This library is free software; you can redistribute it and/or
009 * modify it under the terms of the GNU Lesser General Public
010 * License as published by the Free Software Foundation; either
011 * version 2.1 of the License, or (at your option) any later version.
012 *
013 * This library is distributed in the hope that it will be useful,
014 * but WITHOUT ANY WARRANTY; without even the implied warranty of
015 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
016 * Lesser General Public License for more details.
017 *
018 * You should have received a copy of the GNU Lesser General Public
019 * License along with this library; if not, write to the Free Software
020 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
021 *
022 * Leon van Zantvoort
023 * 243 Acalanes Drive #11
024 * Sunnyvale, CA 94086
025 * USA
026 *
027 * zantvoort@users.sourceforge.net
028 * http://beanlet.org
029 */
030 package org.beanlet.metadata;
031
032 /**
033 * Meta data for writeable attributes.
034 *
035 * @see org.beanlet.Attribute
036 * @see org.beanlet.event.AttributeWriteEvent
037 * @author Leon van Zantvoort
038 */
039 public interface AttributeWriteMetaData extends AttributeMetaData {
040
041 }