// Decompiled by Jad v1.5.8e. Copyright 2001 Pavel Kouznetsov. // Jad home page: http://www.geocities.com/kpdus/jad.html // Decompiler options: braces fieldsfirst space lnc package com.olio.data.object.property; public abstract class Property { private String format; private String name; private String type; public Property(String s, String s1) { type = s; format = s1; } public String getFormat() { return format; } public String getName() { return name; } public String getType() { return type; } public void setFormat(String s) { format = s; } public void setName(String s) { name = s; } public void setType(String s) { type = s; } }