|
What this is
Other links
The source code
/**
* GuestbookStyle.java
* Pete Willemsen
* CoolServlets.com
* February 3, 2000
* Version 1.0.3
*
* Any errors or feature requests can be reported on CoolServlets.com.
* We hope you enjoy this program!
*
* Copyright (C) 2000 Pete Willemsen
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program 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 General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
package com.coolservlets.guestbook;
/**
* GuestbookStyle - start of a class to handle the various styles
*
*/
public class GuestbookStyle {
public GuestbookStyle() {
type = STYLE_1;
}
public GuestbookStyle( int s ) {
type = s;
}
public int type;
public static final int FULL = 0;
public static final int STYLE_1 = 1;
public static final int STYLE_2 = 2;
public static final int STYLE_3 = 3;
public static final int STYLE_4 = 4;
public static final int STYLE_5 = 5;
}
|
| ... this post is sponsored by my books ... | |
#1 New Release! |
FP Best Seller |
Copyright 1998-2024 Alvin Alexander, alvinalexander.com
All Rights Reserved.
A percentage of advertising revenue from
pages under the /java/jwarehouse
URI on this website is
paid back to open source projects.