API  1.0.0
CPCibHelpConnector.j
Go to the documentation of this file.
1 /*
2  * CPCibHelpConnector.j
3  * AppKit
4  *
5  * Created by Antoine Mercadal.
6  * Copyright 2012, The Cappuccino Project.
7  *
8  * This library is free software; you can redistribute it and/or
9  * modify it under the terms of the GNU Lesser General Public
10  * License as published by the Free Software Foundation; either
11  * version 2.1 of the License, or (at your option) any later version.
12  *
13  * This library is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16  * Lesser General Public License for more details.
17  *
18  * You should have received a copy of the GNU Lesser General Public
19  * License along with this library; if not, write to the Free Software
20  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
21  */
22 
23 
24 @implementation CPCibHelpConnector : CPCibConnector
25 {
26  id _file;
27  id _marker;
28 }
29 
30 - (id)initWithCoder:(CPCoder)aCoder
31 {
32  if (self = [super initWithCoder:aCoder])
33  {
34  _destination = [aCoder decodeObjectForKey:@"_destination"];
35  _file = [aCoder decodeObjectForKey:@"_file"];
36  _marker = [aCoder decodeObjectForKey:@"_marker"];
37  }
38 
39  return self;
40 }
41 
42 - (void)encodeWithCoder:(CPCoder)aCoder
43 {
44  [super encodeWithCoder:aCoder];
45 
46  [aCoder encodeObject:_destination forKey:@"_destination"];
47  [aCoder encodeObject:_file forKey:@"_file"];
48  [aCoder encodeObject:_marker forKey:@"_marker"];
49 }
50 
51 - (void)establishConnection
52 {
53  [_destination setToolTip:_marker];
54 }
55 
56 @end
57 
Defines methods for use when archiving & restoring (enc/decoding).
Definition: CPCoder.h:2
void encodeWithCoder:(CPCoder aCoder)