KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > caucho > quercus > resources > StreamContextResource


1 /*
2  * Copyright (c) 1998-2006 Caucho Technology -- all rights reserved
3  *
4  * This file is part of Resin(R) Open Source
5  *
6  * Each copy or derived work must preserve the copyright notice and this
7  * notice unmodified.
8  *
9  * Resin Open Source is free software; you can redistribute it and/or modify
10  * it under the terms of the GNU General Public License as published by
11  * the Free Software Foundation; either version 2 of the License, or
12  * (at your option) any later version.
13  *
14  * Resin Open Source is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE, or any warranty
17  * of NON-INFRINGEMENT. See the GNU General Public License for more
18  * details.
19  *
20  * You should have received a copy of the GNU General Public License
21  * along with Resin Open Source; if not, write to the
22  *
23  * Free Software Foundation, Inc.
24  * 59 Temple Place, Suite 330
25  * Boston, MA 02111-1307 USA
26  *
27  * @author Scott Ferguson
28  */

29
30 package com.caucho.quercus.resources;
31
32 import com.caucho.quercus.env.*;
33
34 /**
35  * Represents a PHP stream context.
36  */

37 public class StreamContextResource extends ResourceValue {
38   private ArrayValue _options;
39   private ArrayValue _parameters;
40   
41   public StreamContextResource()
42   {
43     this(null);
44   }
45
46   public StreamContextResource(ArrayValue options)
47   {
48     this(options, null);
49   }
50
51   public StreamContextResource(ArrayValue options, ArrayValue parameters)
52   {
53     if (options == null)
54       options = new ArrayValueImpl();
55
56     if (parameters == null)
57       parameters = new ArrayValueImpl();
58     
59     _options = options;
60     _parameters = parameters;
61   }
62
63   /**
64    * Returns the options.
65    */

66   public ArrayValue getOptions()
67   {
68     return _options;
69   }
70
71   /**
72    * Sets the options.
73    */

74   public void setOptions(ArrayValue options)
75   {
76     _options = options;
77   }
78
79   /**
80    * Sets an option
81    */

82   public void setOption(String JavaDoc wrapper, String JavaDoc option, Value value)
83   {
84     StringValue wrapperV = new StringValueImpl(wrapper);
85     StringValue optionV = new StringValueImpl(option);
86
87     _options.getArray(wrapperV).put(optionV, value);
88   }
89
90   /**
91    * Sets the parameters.
92    */

93   public void setParameters(ArrayValue parameters)
94   {
95     _parameters = parameters;
96   }
97   
98   /**
99    * Converts to a string.
100    * @param env
101    */

102   public StringValue toString(Env env)
103   {
104     return new StringValueImpl("StreamContextResource[]");
105   }
106 }
107
108
Popular Tags