blob: c9858b8a2ea43f0b91bc2734d5c950a7be4474ef [file] [log] [blame]
/*
* Copyright 2002,2005 The Apache Software Foundation.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.apache.commons.jelly.tags.memory;
import org.apache.commons.jelly.TagLibrary;
/**
* A Jelly custom tag library that performs memory related tasks.
*
* @author <a href="mailto:brett@apache.org">Brett Porter</a>
* @version $Revision: 1.1 $
*/
public class MemoryTagLibrary extends TagLibrary {
public MemoryTagLibrary() {
registerTag("gc", GcTag.class);
registerTag("showFree", FreeMemoryTag.class);
}
}