Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

Source code: com/arranger/jarl/shell/ShellObject.java


1   package com.arranger.jarl.shell;
2   
3   /**
4    * ShellObject created on Apr 16, 2003 
5    */
6   public abstract class ShellObject {
7   
8       protected static final String LINE_SEP = System.getProperty("line.separator");
9   
10      protected JarlShell m_jarlShell;
11  
12      public void initialize(JarlShell jarlShell) {
13          m_jarlShell = jarlShell;
14      }
15  
16      public JarlShell getJarlShell() {
17          return m_jarlShell;
18      }
19  }