blob: d2767f63a7ece87f0eff7f35af646fdf41e6d8a7 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 2020 IBM Corporation and others.
*
* This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.swt.internal.cocoa;
public class CALayer extends NSObject {
public CALayer() {
super();
}
public CALayer(long id) {
super(id);
}
public CALayer(id id) {
super(id);
}
public void setHidden(boolean hidden) {
OS.objc_msgSend(this.id, OS.sel_setHidden_, hidden);
}
}