Merge pull request #64 in ITERATE/cyberduck from feature/windows/9074 to master
[cyberduck.git] / source / ch / cyberduck / binding / application / NSImageCell.java
blobbeca5875baabd98be542beb042aca337460ecb77
1 package ch.cyberduck.binding.application;
3 /*
4 * Copyright (c) 2002-2009 David Kocher. All rights reserved.
6 * http://cyberduck.ch/
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 {
35 NSImageCell alloc();
38 public abstract NSImageCell init();
40 /**
41 * Original signature : <code>NSImageAlignment imageAlignment()</code><br>
42 * <i>native declaration : :51</i>
44 public abstract NSUInteger imageAlignment();
46 /**
47 * Original signature : <code>void setImageAlignment(NSImageAlignment)</code><br>
48 * <i>native declaration : :52</i>
50 public abstract void setImageAlignment(NSUInteger newAlign);
52 /**
53 * Original signature : <code>imageScaling()</code><br>
54 * <i>native declaration : :53</i>
56 public abstract NSUInteger imageScaling();
57 /**
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)
62 /**
63 * Original signature : <code>NSImageFrameStyle imageFrameStyle()</code><br>
64 * <i>native declaration : :55</i>
66 public abstract NSUInteger imageFrameStyle();
68 /**
69 * Original signature : <code>void setImageFrameStyle(NSImageFrameStyle)</code><br>
70 * <i>native declaration : :56</i>
72 public abstract void setImageFrameStyle(NSUInteger newStyle);