FRANotificationTableViewCell.h revision 2229ffbfe08c2cd606c305f8934e627548002c9e
1N/A/*
1N/A * The contents of this file are subject to the terms of the Common Development and
1N/A * Distribution License (the License). You may not use this file except in compliance with the
1N/A * License.
1N/A *
1N/A * You can obtain a copy of the License at legal/CDDLv1.0.txt. See the License for the
1N/A * specific language governing permission and limitations under the License.
1N/A *
1N/A * When distributing Covered Software, include this CDDL Header Notice in each file and include
1N/A * the License file at legal/CDDLv1.0.txt. If applicable, add the following below the CDDL
1N/A * Header, with the fields enclosed by brackets [] replaced by your own identifying
1N/A * information: "Portions copyright [year] [name of copyright owner]".
1N/A *
1N/A * Copyright 2016 ForgeRock AS.
1N/A */
1N/A
1N/A#import <UIKit/UIKit.h>
1N/A
1N/A/*!
1N/A * Custom UITableViewCell for Notifications tab UITableView.
1N/A *
1N/A * This class exists to allow easy access to the cell's UI elements.
1N/A */
1N/A@interface FRANotificationTableViewCell : UITableViewCell
1N/A
1N/A/*!
1N/A * The UIImageView in which the notification issuer's icon will be displayed.
1N/A */
1N/A@property (weak, nonatomic) IBOutlet UIImageView *image;
1N/A/*!
1N/A * The UILabel in which the issuer's name will be displayed.
1N/A */
1N/A@property (weak, nonatomic) IBOutlet UILabel *issuer;
1N/A/*!
1N/A * The UILabel in which the notification summary will be displayed.
1N/A */
1N/A@property (weak, nonatomic) IBOutlet UILabel *shortDescription;
1N/A/*!
1N/A * The UILabel in which the notification time will be displayed.
1N/A */
1N/A@property (weak, nonatomic) IBOutlet UILabel *time;
1N/A
1N/A@end
1N/A