/* * Copyright (C) 2013-2015 RoboVM AB * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package org.robovm.apple.uikit; /*<imports>*/ import java.io.*; import java.nio.*; import java.util.*; import org.robovm.objc.*; import org.robovm.objc.annotation.*; import org.robovm.objc.block.*; import org.robovm.rt.*; import org.robovm.rt.annotation.*; import org.robovm.rt.bro.*; import org.robovm.rt.bro.annotation.*; import org.robovm.rt.bro.ptr.*; import org.robovm.apple.foundation.*; import org.robovm.apple.coreanimation.*; import org.robovm.apple.coregraphics.*; import org.robovm.apple.coredata.*; import org.robovm.apple.coreimage.*; import org.robovm.apple.coretext.*; import org.robovm.apple.corelocation.*; /*</imports>*/ /*<javadoc>*/ /*</javadoc>*/ /*<annotations>*//*</annotations>*/ /*<visibility>*/public/*</visibility>*/ class /*<name>*/UITableViewDelegateAdapter/*</name>*/ extends /*<extends>*/UIScrollViewDelegateAdapter/*</extends>*/ /*<implements>*/implements UITableViewDelegate/*</implements>*/ { /*<ptr>*/ /*</ptr>*/ /*<bind>*/ /*</bind>*/ /*<constants>*//*</constants>*/ /*<constructors>*//*</constructors>*/ /*<properties>*/ /*</properties>*/ /*<members>*//*</members>*/ /*<methods>*/ @NotImplemented("tableView:willDisplayCell:forRowAtIndexPath:") public void willDisplayCell(UITableView tableView, UITableViewCell cell, NSIndexPath indexPath) {} /** * @since Available in iOS 6.0 and later. */ @NotImplemented("tableView:willDisplayHeaderView:forSection:") public void willDisplayHeaderView(UITableView tableView, UIView view, @MachineSizedSInt long section) {} /** * @since Available in iOS 6.0 and later. */ @NotImplemented("tableView:willDisplayFooterView:forSection:") public void willDisplayFooterView(UITableView tableView, UIView view, @MachineSizedSInt long section) {} /** * @since Available in iOS 6.0 and later. */ @NotImplemented("tableView:didEndDisplayingCell:forRowAtIndexPath:") public void didEndDisplayingCell(UITableView tableView, UITableViewCell cell, NSIndexPath indexPath) {} /** * @since Available in iOS 6.0 and later. */ @NotImplemented("tableView:didEndDisplayingHeaderView:forSection:") public void didEndDisplayingHeaderView(UITableView tableView, UIView view, @MachineSizedSInt long section) {} /** * @since Available in iOS 6.0 and later. */ @NotImplemented("tableView:didEndDisplayingFooterView:forSection:") public void didEndDisplayingFooterView(UITableView tableView, UIView view, @MachineSizedSInt long section) {} @NotImplemented("tableView:heightForRowAtIndexPath:") public @MachineSizedFloat double getHeightForRow(UITableView tableView, NSIndexPath indexPath) { return 0; } @NotImplemented("tableView:heightForHeaderInSection:") public @MachineSizedFloat double getHeightForHeader(UITableView tableView, @MachineSizedSInt long section) { return 0; } @NotImplemented("tableView:heightForFooterInSection:") public @MachineSizedFloat double getHeightForFooter(UITableView tableView, @MachineSizedSInt long section) { return 0; } /** * @since Available in iOS 7.0 and later. */ @NotImplemented("tableView:estimatedHeightForRowAtIndexPath:") public @MachineSizedFloat double getEstimatedHeightForRow(UITableView tableView, NSIndexPath indexPath) { return 0; } /** * @since Available in iOS 7.0 and later. */ @NotImplemented("tableView:estimatedHeightForHeaderInSection:") public @MachineSizedFloat double getEstimatedHeightForHeader(UITableView tableView, @MachineSizedSInt long section) { return 0; } /** * @since Available in iOS 7.0 and later. */ @NotImplemented("tableView:estimatedHeightForFooterInSection:") public @MachineSizedFloat double getEstimatedHeightForFooter(UITableView tableView, @MachineSizedSInt long section) { return 0; } @NotImplemented("tableView:viewForHeaderInSection:") public UIView getViewForHeader(UITableView tableView, @MachineSizedSInt long section) { return null; } @NotImplemented("tableView:viewForFooterInSection:") public UIView getViewForFooter(UITableView tableView, @MachineSizedSInt long section) { return null; } @NotImplemented("tableView:accessoryButtonTappedForRowWithIndexPath:") public void accessoryButtonTapped(UITableView tableView, NSIndexPath indexPath) {} /** * @since Available in iOS 6.0 and later. */ @NotImplemented("tableView:shouldHighlightRowAtIndexPath:") public boolean shouldHighlightRow(UITableView tableView, NSIndexPath indexPath) { return false; } /** * @since Available in iOS 6.0 and later. */ @NotImplemented("tableView:didHighlightRowAtIndexPath:") public void didHighlightRow(UITableView tableView, NSIndexPath indexPath) {} /** * @since Available in iOS 6.0 and later. */ @NotImplemented("tableView:didUnhighlightRowAtIndexPath:") public void didUnhighlightRow(UITableView tableView, NSIndexPath indexPath) {} @NotImplemented("tableView:willSelectRowAtIndexPath:") public NSIndexPath willSelectRow(UITableView tableView, NSIndexPath indexPath) { return null; } /** * @since Available in iOS 3.0 and later. */ @NotImplemented("tableView:willDeselectRowAtIndexPath:") public NSIndexPath willDeselectRow(UITableView tableView, NSIndexPath indexPath) { return null; } @NotImplemented("tableView:didSelectRowAtIndexPath:") public void didSelectRow(UITableView tableView, NSIndexPath indexPath) {} /** * @since Available in iOS 3.0 and later. */ @NotImplemented("tableView:didDeselectRowAtIndexPath:") public void didDeselectRow(UITableView tableView, NSIndexPath indexPath) {} @NotImplemented("tableView:editingStyleForRowAtIndexPath:") public UITableViewCellEditingStyle getEditingStyleForRow(UITableView tableView, NSIndexPath indexPath) { return null; } /** * @since Available in iOS 3.0 and later. */ @NotImplemented("tableView:titleForDeleteConfirmationButtonForRowAtIndexPath:") public String getTitleForDeleteConfirmationButton(UITableView tableView, NSIndexPath indexPath) { return null; } /** * @since Available in iOS 8.0 and later. */ @NotImplemented("tableView:editActionsForRowAtIndexPath:") public NSArray<UITableViewRowAction> getEditActionsForRow(UITableView tableView, NSIndexPath indexPath) { return null; } @NotImplemented("tableView:shouldIndentWhileEditingRowAtIndexPath:") public boolean shouldIndentWhileEditingRow(UITableView tableView, NSIndexPath indexPath) { return false; } @NotImplemented("tableView:willBeginEditingRowAtIndexPath:") public void willBeginEditingRow(UITableView tableView, NSIndexPath indexPath) {} @NotImplemented("tableView:didEndEditingRowAtIndexPath:") public void didEndEditingRow(UITableView tableView, NSIndexPath indexPath) {} @NotImplemented("tableView:targetIndexPathForMoveFromRowAtIndexPath:toProposedIndexPath:") public NSIndexPath getTargetForMove(UITableView tableView, NSIndexPath sourceIndexPath, NSIndexPath proposedDestinationIndexPath) { return null; } @NotImplemented("tableView:indentationLevelForRowAtIndexPath:") public @MachineSizedSInt long getIndentationLevelForRow(UITableView tableView, NSIndexPath indexPath) { return 0; } /** * @since Available in iOS 5.0 and later. */ @NotImplemented("tableView:shouldShowMenuForRowAtIndexPath:") public boolean shouldShowMenuForRow(UITableView tableView, NSIndexPath indexPath) { return false; } /** * @since Available in iOS 5.0 and later. */ @NotImplemented("tableView:canPerformAction:forRowAtIndexPath:withSender:") public boolean canPerformAction(UITableView tableView, Selector action, NSIndexPath indexPath, NSObject sender) { return false; } /** * @since Available in iOS 5.0 and later. */ @NotImplemented("tableView:performAction:forRowAtIndexPath:withSender:") public void performActionForRow(UITableView tableView, Selector action, NSIndexPath indexPath, NSObject sender) {} /*</methods>*/ }