loadstate.h (07a3d7f1) loadstate.h (a49f1911)
1/**************************************************************
2 *
3 * Licensed to the Apache Software Foundation (ASF) under one
4 * or more contributor license agreements. See the NOTICE file
5 * distributed with this work for additional information
6 * regarding copyright ownership. The ASF licenses this file
7 * to you under the Apache License, Version 2.0 (the
8 * "License"); you may not use this file except in compliance

--- 33 unchanged lines hidden (view full) ---

42 These enum values specify all possible results of a load request.
43 It doesn't matter, if this load operation used dispatch() or loadComponentFromURL().
44 The meaning is every time the same.
45 */
46enum ELoadState
47{
48 E_UNSPECIFIED = 0, // indicates the operation was not already started
49 E_SUCCESS = 1, // the load request was successful
1/**************************************************************
2 *
3 * Licensed to the Apache Software Foundation (ASF) under one
4 * or more contributor license agreements. See the NOTICE file
5 * distributed with this work for additional information
6 * regarding copyright ownership. The ASF licenses this file
7 * to you under the Apache License, Version 2.0 (the
8 * "License"); you may not use this file except in compliance

--- 33 unchanged lines hidden (view full) ---

42 These enum values specify all possible results of a load request.
43 It doesn't matter, if this load operation used dispatch() or loadComponentFromURL().
44 The meaning is every time the same.
45 */
46enum ELoadState
47{
48 E_UNSPECIFIED = 0, // indicates the operation was not already started
49 E_SUCCESS = 1, // the load request was successful
50 E_IOERROR = 2, // there was an io error internaly
50 E_IOERROR = 2, // there was an io error internally
51 E_INTERACTION = 3, // there was an interaction, which couldn't be handled (doesn't include IO interactions => see E_IOERROR before)
52 E_FAILED = 4 // for unknown or unspecified errors
53};
54
55//_______________________________________________________________________
56/**
57 Helper, which provides some functionality to identify the reason for
58 a failed load request and can describe it.

--- 53 unchanged lines hidden ---
51 E_INTERACTION = 3, // there was an interaction, which couldn't be handled (doesn't include IO interactions => see E_IOERROR before)
52 E_FAILED = 4 // for unknown or unspecified errors
53};
54
55//_______________________________________________________________________
56/**
57 Helper, which provides some functionality to identify the reason for
58 a failed load request and can describe it.

--- 53 unchanged lines hidden ---