01: /*
02: * Copyright 2001 Sun Microsystems, Inc. All rights reserved.
03: * PROPRIETARY/CONFIDENTIAL. Use of this product is subject to license terms.
04: */
05:
06: package com.sun.portal.search.util;
07:
08: /**
09: * Search build constants.
10: * XXX This source file should be built during the build process.
11: */
12: public interface Build {
13:
14: // enable/disable debugging
15: boolean debug = false;
16: }
|