/Foundation/CPPropertyListSerialization.j
http://github.com/cacaodev/cappuccino · Unknown · 65 lines · 52 code · 13 blank · 0 comment · 0 complexity · a0e2077c92efcb821664f912438b7612 MD5 · raw file
- /*
- * CPPropertyListSerialization.j
- * Foundation
- *
- * Created by Francisco Tolmasky.
- * Copyright 2008, 280 North, Inc.
- *
- * This library is free software; you can redistribute it and/or
- * modify it under the terms of the GNU Lesser General Public
- * License as published by the Free Software Foundation; either
- * version 2.1 of the License, or (at your option) any later version.
- *
- * This library is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- * Lesser General Public License for more details.
- *
- * You should have received a copy of the GNU Lesser General Public
- * License along with this library; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
- */
- @import "CPException.j"
- @import "CPObject.j"
- CPPropertyListUnknownFormat = 0;
- CPPropertyListOpenStepFormat = kCFPropertyListOpenStepFormat;
- CPPropertyListXMLFormat_v1_0 = kCFPropertyListXMLFormat_v1_0;
- CPPropertyListBinaryFormat_v1_0 = kCFPropertyListBinaryFormat_v1_0;
- CPPropertyList280NorthFormat_v1_0 = kCFPropertyList280NorthFormat_v1_0;
- @implementation CPPropertyListSerialization : CPObject
- {
- }
- + (CPData)dataFromPropertyList:(id)aPlist format:(CPPropertyListFormat)aFormat
- {
- return CPPropertyListCreateData(aPlist, aFormat);
- }
- + (id)propertyListFromData:(CPData)data format:(CPPropertyListFormat)aFormat
- {
- return CPPropertyListCreateFromData(data, aFormat);
- }
- @end
- @implementation CPPropertyListSerialization (Deprecated)
- + (CPData)dataFromPropertyList:(id)aPlist format:(CPPropertyListFormat)aFormat errorDescription:(id)anErrorString
- {
- _CPReportLenientDeprecation(self, _cmd, @selector(dataFromPropertyList:format:));
- return [self dataFromPropertyList:aPlist format:aFormat];
- }
- + (id)propertyListFromData:(CPData)data format:(CPPropertyListFormat)aFormat errorDescription:(id)errorString
- {
- _CPReportLenientDeprecation(self, _cmd, @selector(propertyListFromData:format:));
- return [self propertyListFromData:data format:aFormat];
- }
- @end