view org.eclipse.swt.gtk.linux.x86/src/org/eclipse/swt/custom/SashFormData.d @ 48:ddbfe84d86df

[swt lin] versioned imports
author Frank Benoit <benoit@tionex.de>
date Fri, 27 Mar 2009 12:05:20 +0100
parents f713da8bc051
children c01d033c633a
line wrap: on
line source

/*******************************************************************************
 * Copyright (c) 2000, 2005 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:
 *     Frank Benoit <benoit@tionex.de>
 *******************************************************************************/
module org.eclipse.swt.custom.SashFormData;

import java.lang.all;

version(Tango){
static import tango.text.Util;
import tango.util.Convert;
} else { // Phobos
}

class SashFormData {

    long weight;

String getName () {
    String string = this.classinfo.name;
    int index = tango.text.Util.locatePrior( string ,'.' );
    if (index is string.length ) return string;
    return string[ index + 1 .. $ ];
}

/**
 * Returns a string containing a concise, human-readable
 * description of the receiver.
 *
 * @return a string representation of the event
 */
public override String toString () {
    return getName()~" {weight="~to!(String)(weight)~"}"; //$NON-NLS-2$
}
}