mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-27 02:47:31 +09:00
Issue #1258 - Part 1: Import mailnews, ldap, and mork from comm-esr52.9.1
This commit is contained in:
parent
23e0d82436
commit
e400f4130a
1564 changed files with 510348 additions and 0 deletions
72
mailnews/import/public/nsIImportFieldMap.idl
Normal file
72
mailnews/import/public/nsIImportFieldMap.idl
Normal file
|
|
@ -0,0 +1,72 @@
|
|||
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
|
||||
/* This Source Code Form is subject to the terms of the Mozilla Public
|
||||
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
||||
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
||||
|
||||
/*
|
||||
Field map interface for importing address books
|
||||
|
||||
A field map is an arbitrary sized list of mozilla address book fields.
|
||||
The field map is used by import to map fields from the import format
|
||||
to mozilla fields.
|
||||
For export, the map contains the ordered list of mozilla fields to
|
||||
export!
|
||||
*/
|
||||
|
||||
#include "nsISupports.idl"
|
||||
|
||||
interface nsIAddrDatabase;
|
||||
interface nsIMdbRow;
|
||||
interface nsIAbCard;
|
||||
|
||||
[scriptable, uuid(deee9264-1fe3-47b1-b745-47b22de454e2)]
|
||||
interface nsIImportFieldMap : nsISupports
|
||||
{
|
||||
/*
|
||||
Flag to indicate whether or not to skip the first record,
|
||||
for instance csv files often have field names as the first
|
||||
record
|
||||
*/
|
||||
attribute boolean skipFirstRecord;
|
||||
|
||||
readonly attribute long numMozFields;
|
||||
readonly attribute long mapSize;
|
||||
|
||||
wstring GetFieldDescription( in long index);
|
||||
|
||||
/*
|
||||
Set the size of the field map, all unpopulated entries
|
||||
will default to -1
|
||||
*/
|
||||
void SetFieldMapSize( in long size);
|
||||
|
||||
/*
|
||||
Initialize the field map to a given size with default values
|
||||
*/
|
||||
void DefaultFieldMap( in long size);
|
||||
|
||||
/*
|
||||
Return the field number that this index maps to, -1 for no field
|
||||
*/
|
||||
long GetFieldMap( in long index);
|
||||
|
||||
/*
|
||||
Set the field that this index maps to, -1 for no field
|
||||
*/
|
||||
void SetFieldMap( in long index, in long fieldNum);
|
||||
|
||||
/*
|
||||
Return if this field is "active" in the map.
|
||||
*/
|
||||
boolean GetFieldActive( in long index);
|
||||
|
||||
/*
|
||||
Set the active state of this field
|
||||
*/
|
||||
void SetFieldActive( in long index, in boolean active);
|
||||
|
||||
/*
|
||||
Set the value of the given field in the database row
|
||||
*/
|
||||
void SetFieldValue( in nsIAddrDatabase database, in nsIMdbRow row, in long fieldNum, in wstring value);
|
||||
};
|
||||
Loading…
Add table
Add a link
Reference in a new issue