2 * Copyright (c) 2002-2004 Widespace, OU and others.
3 * All rights reserved. This program and the accompanying materials
4 * are made available under the terms of the Common Public License v1.0
5 * which accompanies this distribution, and is available at
6 * http://solareclipse.sourceforge.net/legal/cpl-v10.html
9 * Igor Malinin - initial contribution
11 * $Id: ViewNode.java,v 1.2 2005-06-14 05:04:09 axelcl Exp $
14 package net.sourceforge.phpeclipse.ui.text.rules;
17 * @author Igor Malinin
19 public class ViewNode extends FlatNode {
21 /** Inner view of the document */
22 public InnerDocumentView view;
24 public ViewNode(String type) {
29 * @see java.lang.Object#toString()
31 public String toString() {
32 return "ViewNode[" + type + ", " + offset + ", " + length + "]";