summaryrefslogtreecommitdiffstats
path: root/dtrans/source/cnttype/mcnttype.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'dtrans/source/cnttype/mcnttype.cxx')
-rw-r--r--dtrans/source/cnttype/mcnttype.cxx81
1 files changed, 0 insertions, 81 deletions
diff --git a/dtrans/source/cnttype/mcnttype.cxx b/dtrans/source/cnttype/mcnttype.cxx
index 7381e3660efa..c05d57488519 100644
--- a/dtrans/source/cnttype/mcnttype.cxx
+++ b/dtrans/source/cnttype/mcnttype.cxx
@@ -19,66 +19,43 @@
#include "mcnttype.hxx"
-
// namespace directives
-
using namespace com::sun::star::uno;
using namespace com::sun::star::lang;
using namespace com::sun::star::container;
using namespace std;
using namespace osl;
-
-
// constants
-
const char TSPECIALS[] = "()<>@,;:\\\"/[]?=";
const char TOKEN[] = "!#$%&'*+-0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ^_`abcdefghijklmnopqrstuvwxyz{|}~.";
const char SPACE[] = " ";
const char SEMICOLON[] = ";";
-
// ctor
-
CMimeContentType::CMimeContentType( const OUString& aCntType )
{
init( aCntType );
}
-
-//
-
-
OUString SAL_CALL CMimeContentType::getMediaType( ) throw(RuntimeException)
{
return m_MediaType;
}
-
-//
-
-
OUString SAL_CALL CMimeContentType::getMediaSubtype( ) throw(RuntimeException)
{
return m_MediaSubtype;
}
-
-//
-
-
OUString SAL_CALL CMimeContentType::getFullMediaType( ) throw(RuntimeException)
{
return m_MediaType + "/" + m_MediaSubtype;
}
-
-//
-
-
Sequence< OUString > SAL_CALL CMimeContentType::getParameters( ) throw(RuntimeException)
{
MutexGuard aGuard( m_aMutex );
@@ -97,20 +74,12 @@ Sequence< OUString > SAL_CALL CMimeContentType::getParameters( ) throw(RuntimeEx
return seqParams;
}
-
-//
-
-
sal_Bool SAL_CALL CMimeContentType::hasParameter( const OUString& aName ) throw(RuntimeException)
{
MutexGuard aGuard( m_aMutex );
return ( m_ParameterMap.end( ) != m_ParameterMap.find( aName ) );
}
-
-//
-
-
OUString SAL_CALL CMimeContentType::getParameterValue( const OUString& aName ) throw(NoSuchElementException, RuntimeException)
{
MutexGuard aGuard( m_aMutex );
@@ -121,10 +90,6 @@ OUString SAL_CALL CMimeContentType::getParameterValue( const OUString& aName ) t
return m_ParameterMap.find( aName )->second;
}
-
-//
-
-
void SAL_CALL CMimeContentType::init( const OUString& aCntType ) throw( IllegalArgumentException )
{
if ( aCntType.isEmpty( ) )
@@ -136,10 +101,6 @@ void SAL_CALL CMimeContentType::init( const OUString& aCntType ) throw( IllegalA
type();
}
-
-//
-
-
void SAL_CALL CMimeContentType::getSym( void )
{
if ( m_nPos < m_ContentType.getLength( ) )
@@ -152,10 +113,6 @@ void SAL_CALL CMimeContentType::getSym( void )
m_nxtSym = OUString( );
}
-
-//
-
-
void SAL_CALL CMimeContentType::acceptSym( const OUString& pSymTlb )
{
if ( pSymTlb.indexOf( m_nxtSym ) < 0 )
@@ -164,20 +121,12 @@ void SAL_CALL CMimeContentType::acceptSym( const OUString& pSymTlb )
getSym();
}
-
-//
-
-
void SAL_CALL CMimeContentType::skipSpaces( void )
{
while (m_nxtSym == SPACE)
getSym( );
}
-
-//
-
-
void SAL_CALL CMimeContentType::type( void )
{
skipSpaces( );
@@ -207,10 +156,6 @@ void SAL_CALL CMimeContentType::type( void )
subtype( );
}
-
-//
-
-
void SAL_CALL CMimeContentType::subtype( void )
{
skipSpaces( );
@@ -237,10 +182,6 @@ void SAL_CALL CMimeContentType::subtype( void )
trailer();
}
-
-//
-
-
void SAL_CALL CMimeContentType::trailer( void )
{
OUString sToken(TOKEN);
@@ -282,10 +223,6 @@ void SAL_CALL CMimeContentType::trailer( void )
}
}
-
-//
-
-
OUString SAL_CALL CMimeContentType::pName( )
{
OUString pname;
@@ -305,10 +242,6 @@ OUString SAL_CALL CMimeContentType::pName( )
return pname;
}
-
-//
-
-
OUString SAL_CALL CMimeContentType::pValue( )
{
OUString pvalue;
@@ -339,12 +272,10 @@ OUString SAL_CALL CMimeContentType::pValue( )
return pvalue;
}
-
// the following combinations within a quoted value are not allowed:
// '";' (quote sign followed by semicolon) and '" ' (quote sign followed
// by space)
-
OUString SAL_CALL CMimeContentType::quotedPValue( )
{
OUString pvalue;
@@ -375,10 +306,6 @@ OUString SAL_CALL CMimeContentType::quotedPValue( )
return pvalue;
}
-
-//
-
-
OUString SAL_CALL CMimeContentType::nonquotedPValue( )
{
OUString pvalue;
@@ -398,10 +325,6 @@ OUString SAL_CALL CMimeContentType::nonquotedPValue( )
return pvalue;
}
-
-//
-
-
void SAL_CALL CMimeContentType::comment( void )
{
while ( !m_nxtSym.isEmpty( ) )
@@ -415,10 +338,6 @@ void SAL_CALL CMimeContentType::comment( void )
}
}
-
-//
-
-
sal_Bool SAL_CALL CMimeContentType::isInRange( const OUString& aChr, const OUString& aRange )
{
return ( aRange.indexOf( aChr ) > -1 );