ReachableExcludes.java revision 0
0N/A/*
0N/A * Copyright 2005 Sun Microsystems, Inc. All Rights Reserved.
0N/A * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
0N/A *
0N/A * This code is free software; you can redistribute it and/or modify it
0N/A * under the terms of the GNU General Public License version 2 only, as
0N/A * published by the Free Software Foundation. Sun designates this
0N/A * particular file as subject to the "Classpath" exception as provided
0N/A * by Sun in the LICENSE file that accompanied this code.
0N/A *
0N/A * This code is distributed in the hope that it will be useful, but WITHOUT
0N/A * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
0N/A * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
0N/A * version 2 for more details (a copy is included in the LICENSE file that
0N/A * accompanied this code).
0N/A *
0N/A * You should have received a copy of the GNU General Public License version
0N/A * 2 along with this work; if not, write to the Free Software Foundation,
0N/A * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
0N/A *
0N/A * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
0N/A * CA 95054 USA or visit www.sun.com if you need additional information or
0N/A * have any questions.
0N/A */
0N/A
0N/A
0N/A/*
0N/A * The contents of this file are subject to the Sun Public License
0N/A * Version 1.0 (the "License"); you may not use this file except in
0N/A * compliance with the License. A copy of the License is available at
0N/A * http://www.sun.com/, and in the file LICENSE.html in the
0N/A * doc directory.
0N/A *
0N/A * The Original Code is HAT. The Initial Developer of the
0N/A * Original Code is Bill Foote, with contributions from others
0N/A * at JavaSoft/Sun. Portions created by Bill Foote and others
0N/A * at Javasoft/Sun are Copyright (C) 1997-2004. All Rights Reserved.
0N/A *
0N/A * In addition to the formal license, I ask that you don't
0N/A * change the history or donations files without permission.
0N/A *
0N/A */
0N/A
0N/Apackage com.sun.tools.hat.internal.model;
0N/A
0N/A
0N/A/**
0N/A * This represents a set of data members that should be excluded from the
0N/A * reachable objects query. This is useful to exclude observers from the
0N/A * transitive closure of objects reachable from a given object, allowing
0N/A * some kind of real determination of the "size" of that object.
0N/A *
0N/A */
0N/A
0N/Apublic interface ReachableExcludes {
0N/A /**
0N/A * @return true iff the given field is on the hitlist of excluded
0N/A * fields.
0N/A */
0N/A public boolean isExcluded(String fieldName);
0N/A}