view org.eclipse.swt.win32.win32.x86/src/org/eclipse/swt/custom/SashFormData.d @ 9:950d84783eac

Removing direct tango deps.
author Frank Benoit <benoit@tionex.de>
date Mon, 09 Mar 2009 14:26:40 +0100
parents 6dd524f61e62
children 536e43f63c81
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;

class SashFormData {

    long weight;

String getName () {
    String str = this.classinfo.name;
    int index = str.lastIndexOf ('.');
    if (index is -1) return str;
    return str.substring (index + 1, str.length ());
}

/**
 * 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="~String_valueOf(weight)~"}"; //$NON-NLS-2$
}
}