Source code: com/trapezium/chisel/reorganizers/ShapeToInline.java
1 /*
2 * @(#)ShapeToInline.java
3 *
4 * Copyright (c) 1998 by Trapezium Development LLC. All Rights Reserved.
5 *
6 * The information in this file is the property of Trapezium Development LLC
7 * and may be used only in accordance with the terms of the license granted
8 * by Trapezium.
9 *
10 */
11 package com.trapezium.chisel.reorganizers;
12
13 /** Class to convert Shape nodes into Inlines */
14 public class ShapeToInline extends InlineCreator {
15
16 /** Class constructor, indicate Shape nodes are to be converted, InlineCreator
17 * base class does everything else.
18 */
19 public ShapeToInline() {
20 super( "Shape" );
21 }
22 }