1 package ch
.cyberduck
.binding
.application
;
4 * Copyright (c) 2002-2009 David Kocher. All rights reserved.
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
18 * Bug fixes, suggestions and comments should be sent to:
19 * dkocher@cyberduck.ch
22 import ch
.cyberduck
.binding
.foundation
.NSCopying
;
24 import org
.rococoa
.ObjCClass
;
25 import org
.rococoa
.cocoa
.foundation
.NSUInteger
;
27 public abstract class NSImageCell
extends NSCell
implements NSCopying
{
28 static final _Class CLASS
= org
.rococoa
.Rococoa
.createClass("NSImageCell", _Class
.class);
30 public static NSImageCell
imageCell() {
31 return CLASS
.alloc().init();
34 public interface _Class
extends ObjCClass
{
38 public abstract NSImageCell
init();
41 * Original signature : <code>NSImageAlignment imageAlignment()</code><br>
42 * <i>native declaration : :51</i>
44 public abstract NSUInteger
imageAlignment();
47 * Original signature : <code>void setImageAlignment(NSImageAlignment)</code><br>
48 * <i>native declaration : :52</i>
50 public abstract void setImageAlignment(NSUInteger newAlign
);
53 * Original signature : <code>imageScaling()</code><br>
54 * <i>native declaration : :53</i>
56 public abstract NSUInteger
imageScaling();
58 * <i>native declaration : :54</i><br>
59 * Conversion Error : /// Original signature : <code>void setImageScaling(null)</code><br>
60 * - (void)setImageScaling:(null)newScaling; (Argument newScaling cannot be converted)
63 * Original signature : <code>NSImageFrameStyle imageFrameStyle()</code><br>
64 * <i>native declaration : :55</i>
66 public abstract NSUInteger
imageFrameStyle();
69 * Original signature : <code>void setImageFrameStyle(NSImageFrameStyle)</code><br>
70 * <i>native declaration : :56</i>
72 public abstract void setImageFrameStyle(NSUInteger newStyle
);