~ubuntu-branches/ubuntu/saucy/mapserver/saucy-security

« back to all changes in this revision

Viewing changes to mapscript/csharp/symbolStyleObj.cs

  • Committer: Package Import Robot
  • Author(s): Francesco Paolo Lovergine
  • Date: 2011-12-23 14:02:06 UTC
  • mfrom: (26.1.2 sid)
  • Revision ID: package-import@ubuntu.com-20111223140206-n3h9t2hsa8hyslmu
Tags: 6.0.1-2
Added missed stuff for libmapscript-perl.

Show diffs side-by-side

added added

removed removed

Lines of Context:
154
154
    } 
155
155
  }
156
156
 
 
157
  public double gap {
 
158
    set {
 
159
      mapscriptPINVOKE.symbolStyleObj_gap_set(swigCPtr, value);
 
160
      if (mapscriptPINVOKE.SWIGPendingException.Pending) throw mapscriptPINVOKE.SWIGPendingException.Retrieve();
 
161
    } 
 
162
    get {
 
163
      double ret = mapscriptPINVOKE.symbolStyleObj_gap_get(swigCPtr);
 
164
      if (mapscriptPINVOKE.SWIGPendingException.Pending) throw mapscriptPINVOKE.SWIGPendingException.Retrieve();
 
165
      return ret;
 
166
    } 
 
167
  }
 
168
 
 
169
  public styleObj style {
 
170
    set {
 
171
      mapscriptPINVOKE.symbolStyleObj_style_set(swigCPtr, styleObj.getCPtr(value));
 
172
      if (mapscriptPINVOKE.SWIGPendingException.Pending) throw mapscriptPINVOKE.SWIGPendingException.Retrieve();
 
173
    } 
 
174
    get {
 
175
      IntPtr cPtr = mapscriptPINVOKE.symbolStyleObj_style_get(swigCPtr);
 
176
      styleObj ret = (cPtr == IntPtr.Zero) ? null : new styleObj(cPtr, false, ThisOwn_false());
 
177
      if (mapscriptPINVOKE.SWIGPendingException.Pending) throw mapscriptPINVOKE.SWIGPendingException.Retrieve();
 
178
      return ret;
 
179
    } 
 
180
  }
 
181
 
157
182
  public symbolStyleObj() : this(mapscriptPINVOKE.new_symbolStyleObj(), true, null) {
158
183
    if (mapscriptPINVOKE.SWIGPendingException.Pending) throw mapscriptPINVOKE.SWIGPendingException.Retrieve();
159
184
  }