view dwt/internal/cocoa/SWTTreeItem.d @ 11:a329f9c3d66d

Ported dwt.internal.cocoa.SWT* again
author Jacob Carlborg <doob@me.com> <jacob.carlborg@gmail.com>
date Fri, 22 Aug 2008 15:39:51 +0200
parents 380af2bdd8e5
children f565d3a95c0a
line wrap: on
line source

/*******************************************************************************
 * Copyright (c) 2007 IBM Corporation and others.
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v1.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/epl-v10.html
 *
 * Contributors:
 *     IBM Corporation - initial API and implementation
 *     
 * Port to the D Programming language:
 *     Jacob Carlborg <jacob.carlborg@gmail.com>
 *******************************************************************************/
module dwt.internal.cocoa.SWTTreeItem;

import dwt.internal.cocoa.NSInteger;
import dwt.internal.cocoa.NSObject;

public class SWTTreeItem : NSObject {

    public NSInteger tag () {
        return cast(NSInteger) OS.objc_msgSend(id, OS.sel_tag);
    }

    public void setTag (NSInteger tag) {
        OS.objc_msgSend(id, OS.sel_setTag_1, tag);
    }
}